Subversion Repository Public Repository

litesoft

Diff Revisions 936 vs 937 for /trunk/DeviceDesktopTest/src/org/litesoft/language/model/Key.java

Diff revisions: vs.
  @@ -9,7 +9,7 @@
9 9 */
10 10 public class Key
11 11 {
12 - public Key( @NotEmpty String pKey )
12 + public Key( @SignificantText String pKey )
13 13 {
14 14 Problem zProblem = validate( key = pKey );
15 15 if ( zProblem != null )
  @@ -18,7 +18,7 @@
18 18 }
19 19 }
20 20
21 - public final @NotEmpty String getKey()
21 + public final @SignificantText String getKey()
22 22 {
23 23 return key;
24 24 }