Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 801 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/forms/client/components/impls/input/FormCheckBox.java

Diff revisions: vs.
  @@ -1,10 +1,10 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.forms.client.components.impls.input;
3 3
4 - import org.litesoft.GWT.client.*;
5 4 import org.litesoft.GWT.client.widgets.*;
6 5 import org.litesoft.GWT.client.widgets.nonpublic.*;
7 6 import org.litesoft.GWT.forms.client.components.nonpublic.*;
7 + import org.litesoft.core.typeutils.*;
8 8 import org.litesoft.core.util.*;
9 9 import org.litesoft.ui.*;
10 10 import org.litesoft.uispecification.*;
  @@ -26,7 +26,7 @@
26 26 {
27 27 super.initialize( pFieldLabel, pLabelFont, pTooltip );
28 28
29 - if ( null == UtilsGwt.noEmpty( pTooltip ) )
29 + if ( null == Strings.noEmpty( pTooltip ) )
30 30 {
31 31 setVisible( mIndicatorTd.getElement(), false );
32 32 }
  @@ -117,7 +117,7 @@
117 117
118 118 private static String HTMLize( String pFieldLabel )
119 119 {
120 - pFieldLabel = UtilsGwt.noEmpty( pFieldLabel );
120 + pFieldLabel = Strings.noEmpty( pFieldLabel );
121 121 return HTMLize.escapeNoWrap( pFieldLabel );
122 122 }
123 123 }