Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 49 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/interactors/JQueryInteractor.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,17 +12,17 @@
11 12 {
12 13 private final JQueryActionSpec mAction;
13 14 private final Element mElement;
14 -
15 +
15 16 public JQueryInteractor(JQueryActionSpec 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 switch (mAction.getEvent())
24 - {
25 + {
25 26 case Click:
26 27 // todo: parameters?
27 28 NativeEvent event = Document.get().createClickEvent(0, 0, 0, 0, 0, false, false, false, false);