Subversion Repository Public Repository

litesoft

Diff Revisions 60 vs 804 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/forms/client/nonpublic/RelSubFormRowInstanceComponentHandlerImpl.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.GWT.forms.client.nonpublic;
3 3
4 + import org.litesoft.core.typeutils.*;
4 5 import org.litesoft.core.util.*;
5 6 import org.litesoft.ui.def.nonpublic.*;
6 7 import org.litesoft.ui.def.nonpublic.support.*;
  @@ -20,7 +21,7 @@
20 21 public RelSubFormRowInstanceComponentHandlerImpl( RelSubFormInstanceComponentHandlerImpl pParent,
21 22 String pRowObjectKey, int pRowIndex )
22 23 {
23 - UtilsCommon.assertNotNull( "Parent", mParent = pParent );
24 + Objects.assertNotNull( "Parent", mParent = pParent );
24 25 mRowObjectKey = UtilsCommon.assertNotNullNotEmpty( "RowObjectKey", pRowObjectKey );
25 26 mRowIndex = pRowIndex;
26 27 mFormDataRowKey = new FormDataRowKey( getFormUniqueID(), mRowObjectKey );
  @@ -28,7 +29,7 @@
28 29
29 30 public void init( Widget pWidget )
30 31 {
31 - UtilsCommon.assertNotNull( "Widget", mWidget = pWidget );
32 + Objects.assertNotNull( "Widget", mWidget = pWidget );
32 33 SubFormRowCarrier zRowContainer = mParent.getRowCarrier();
33 34 zRowContainer.insert( mWidget, mRowIndex );
34 35 zRowContainer.membershipChangesComplete();