Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 802 for /trunk/Java/GWT/OldServer/src/org/litesoft/GWT/forms/server/support/nonpublic/AbstractNumericFormAMDFactory.java

Diff revisions: vs.
  @@ -4,7 +4,7 @@
4 4 import org.litesoft.GWT.forms.server.support.*;
5 5 import org.litesoft.configuration.*;
6 6 import org.litesoft.core.simpletypes.*;
7 - import org.litesoft.util.*;
7 + import org.litesoft.core.typeutils.*;
8 8
9 9 public abstract class AbstractNumericFormAMDFactory implements FormAttributeMetaDataFactory
10 10 {
  @@ -23,7 +23,7 @@
23 23 protected Integer getDecimalPlaces( CreateAMDParamsPlus pHintSource, Integer pDefaultDecimalPlaces )
24 24 {
25 25 String zDP = pHintSource.getHintValue( DECIMAL_PLACES );
26 - return Utils.isNullOrEmpty( zDP ) ? //
26 + return Strings.isNullOrEmpty( zDP ) ? //
27 27 pDefaultDecimalPlaces : //
28 28 Integer.valueOf( zDP.trim() );
29 29 }
  @@ -31,7 +31,7 @@
31 31 protected NumericFormatControl getNumericFormatControl( CreateAMDParamsPlus pHintSource )
32 32 {
33 33 String zFC = pHintSource.getHintValue( FORMAT_CONTROL );
34 - return Utils.isNullOrEmpty( zFC ) ? //
34 + return Strings.isNullOrEmpty( zFC ) ? //
35 35 NumericFormatControl.JUST_DOT : //
36 36 NumericFormatControl.rehydrate( zFC.trim() );
37 37 }