Subversion Repository Public Repository

litesoft

Diff Revisions 500 vs 802 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/NextButton.java

Diff revisions: vs.
  @@ -1,7 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.client.widgets;
3 3
4 - import org.litesoft.core.util.*;
4 + import org.litesoft.core.typeutils.*;
5 5 import org.litesoft.uispecification.*;
6 6
7 7 public class NextButton implements ButtonFactory
  @@ -35,6 +35,6 @@
35 35
36 36 public static String toolTip( String pPrefix, ViewDef pViewDef )
37 37 {
38 - return (pViewDef == null) ? "" : UtilsCommon.deNull( pPrefix ) + "Advance to the " + pViewDef.getUiString() + " step";
38 + return (pViewDef == null) ? "" : Strings.deNull( pPrefix ) + "Advance to the " + pViewDef.getUiString() + " step";
39 39 }
40 40 }