Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/interactors/SetAttributeElementInteractor.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import org.litesoft.GWT.client.dev.ui.actions.*;
5 5 import org.litesoft.GWT.client.dev.ui.inspection.*;
6 - import org.litesoft.commonfoundation.typeutils.*;
6 + import org.litesoft.commonfoundation.base.*;
7 7
8 8 import com.google.gwt.dom.client.*;
9 9
  @@ -14,8 +14,8 @@
14 14
15 15 public SetAttributeElementInteractor( SetAttributeActionSpec pAction, Element pElement)
16 16 {
17 - mAction = Objects.assertNotNull( "pAction", pAction );
18 - mElement = Objects.assertNotNull( "pElement", pElement );
17 + mAction = Confirm.isNotNull( "pAction", pAction );
18 + mElement = Confirm.isNotNull( "pElement", pElement );
19 19 }
20 20
21 21 public void execute()