Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 802 for /trunk/Java/core/jvm1.4/src/org/litesoft/ui/def/nonpublic/support/LabelMetaData.java

Diff revisions: vs.
  @@ -1,6 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.ui.def.nonpublic.support;
3 3
4 + import org.litesoft.core.typeutils.*;
4 5 import org.litesoft.core.util.*;
5 6 import org.litesoft.ui.support.*;
6 7
  @@ -22,7 +23,7 @@
22 23 public LabelMetaData( LabelUsage pUsage, String pExternalText )
23 24 {
24 25 mLabelID = pUsage.getLabelID();
25 - mExternalText = UtilsCommon.deNull( pExternalText );
26 + mExternalText = Strings.deNull( pExternalText );
26 27 }
27 28
28 29 public String getLabelID()