Subversion Repository Public Repository

litesoft

Diff Revisions 938 vs 939 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/localstorage/LocalStorageImpl.java

Diff revisions: vs.
  @@ -1,12 +1,12 @@
1 1 package org.litesoft.GWT.client.localstorage;
2 2
3 - import java.util.*;
4 -
5 - import org.litesoft.core.annotations.*;
3 + import org.litesoft.commonfoundation.annotations.*;
4 + import org.litesoft.commonfoundation.interators.*;
5 + import org.litesoft.commonfoundation.typeutils.*;
6 6 import org.litesoft.core.simpletypes.nonpublic.*;
7 - import org.litesoft.core.typeutils.*;
8 - import org.litesoft.core.typeutils.Objects;
9 - import org.litesoft.core.util.*;
7 +
8 + import org.litesoft.commonfoundation.typeutils.Objects;
9 + import java.util.*;
10 10
11 11 /**
12 12 * Local Storage is a Proxy/Adapter to the underlying HTML5 LocalStorage.
  @@ -111,7 +111,7 @@
111 111 @Override
112 112 public Iterator<Entry<String, String>> iterator()
113 113 {
114 - return new AbstractReadOnlyIterator<Entry<String, String>>()
114 + return new Iterators.AbstractReadOnly<Entry<String, String>>()
115 115 {
116 116 private final int mVersion = getVersion();
117 117 private final int mSize = size();
  @@ -196,16 +196,19 @@
196 196 this.mValue = pValue;
197 197 }
198 198
199 + @Override
199 200 public String getKey()
200 201 {
201 202 return mKey;
202 203 }
203 204
205 + @Override
204 206 public String getValue()
205 207 {
206 208 return mValue;
207 209 }
208 210
211 + @Override
209 212 public String setValue( String value )
210 213 {
211 214 throw new UnsupportedOperationException();