Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -5,13 +5,13 @@
5 5
6 6 public class MasterUnvalidatedEntry extends Key
7 7 {
8 - public MasterUnvalidatedEntry( @NotEmpty String pKey, @NotEmpty String pValue )
8 + public MasterUnvalidatedEntry( @SignificantText String pKey, @NotEmpty String pValue )
9 9 {
10 10 super( pKey );
11 - mValue = Strings.assertNotNullNotEmpty( "Value", pValue );
11 + mValue = Strings.assertNotEmptyIfNotNull( "Value", pValue );
12 12 }
13 13
14 - public @NotEmpty String getValue()
14 + public @SignificantText String getValue()
15 15 {
16 16 return mValue;
17 17 }