Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 49 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/interactors/KeystrokesElementInteractor.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.*;
  @@ -10,13 +11,13 @@
10 11 {
11 12 private final KeystrokesActionSpec mAction;
12 13 private final Element mElement;
13 -
14 +
14 15 public KeystrokesElementInteractor( KeystrokesActionSpec pAction, Element pElement)
15 16 {
16 17 mAction = UtilsGwt.assertNotNull("pAction", pAction);
17 18 mElement = UtilsGwt.assertNotNull("pElement", pElement);
18 19 }
19 -
20 +
20 21 public void execute()
21 22 {
22 23 String value = mAction.getValue();