Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 49 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/interactors/ClickElementInteractor.java

Diff revisions: vs.
  @@ -1,3 +1,4 @@
1 + // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
1 2 package org.litesoft.GWT.client.dev.ui.inspection.interactors;
2 3
3 4 import org.litesoft.GWT.client.*;
  @@ -11,13 +12,13 @@
11 12 {
12 13 private final ClickActionSpec mAction;
13 14 private final Element mElement;
14 -
15 +
15 16 public ClickElementInteractor( ClickActionSpec pAction, Element pElement)
16 17 {
17 18 mAction = UtilsGwt.assertNotNull("pAction", pAction);
18 19 mElement = UtilsGwt.assertNotNull("pElement", pElement);
19 20 }
20 -
21 +
21 22 public void execute()
22 23 {
23 24 boolean ctrl;