Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 49 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/actions/JQueryActionSpec.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.actions;
2 3
3 4 import org.litesoft.core.util.*;
  @@ -8,26 +9,26 @@
8 9 {
9 10 // TODO: how to input strings? Key methods do not accept parameters...
10 11 Click;
11 -
12 +
12 13 public String getJQueryMethodName()
13 14 {
14 15 return name();
15 16 }
16 17 }
17 -
18 +
18 19 private Event mEvent;
19 -
20 +
20 21 @Deprecated
21 22 protected JQueryActionSpec()
22 23 {
23 24 }
24 -
25 +
25 26 public JQueryActionSpec(Event pEvent)
26 27 {
27 28 super(ActionSpecId.JQuery);
28 29 mEvent = UtilsCommon.assertNotNull("pEvent", pEvent);
29 30 }
30 -
31 +
31 32 public Event getEvent()
32 33 {
33 34 return mEvent;