Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -3,6 +3,7 @@
3 3
4 4 import java.util.*;
5 5
6 + import org.litesoft.core.typeutils.*;
6 7 import org.litesoft.core.util.*;
7 8 import org.litesoft.ui.support.*;
8 9
  @@ -30,7 +31,7 @@
30 31 this( pUniqueID );
31 32 mRootType = required( "RootType", pRootType );
32 33 mHot = pHot;
33 - UtilsCommon.assertNotNull( "IntendedUse", mIntendedUse = pIntendedUse );
34 + Objects.assertNotNull( "IntendedUse", mIntendedUse = pIntendedUse );
34 35 }
35 36
36 37 // Sub Form
  @@ -38,14 +39,14 @@
38 39 {
39 40 this( pUniqueID );
40 41 mRelAttributeRef = required( "RelAttributeRef", pRelAttributeRef );
41 - UtilsCommon.assertNotNull( "Parent", mParent = pParent );
42 + Objects.assertNotNull( "Parent", mParent = pParent );
42 43 mIntendedUse = mParent.getIntendedUse();
43 44 }
44 45
45 46 // Shared
46 47 private FormUsageCollector( Integer pUniqueID )
47 48 {
48 - UtilsCommon.assertNotNull( "UniqueID", mUniqueID = pUniqueID );
49 + Objects.assertNotNull( "UniqueID", mUniqueID = pUniqueID );
49 50 }
50 51
51 52 public Integer getUniqueID()