Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 49 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/JQuerySelectionSpec.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;
2 3
3 4 import org.litesoft.core.util.*;
  @@ -5,18 +6,18 @@
5 6 public class JQuerySelectionSpec extends SelectionSpec
6 7 {
7 8 private String mExpression;
8 -
9 +
9 10 @Deprecated
10 11 protected JQuerySelectionSpec()
11 12 {
12 13 }
13 -
14 +
14 15 public JQuerySelectionSpec(String pExpression)
15 16 {
16 17 super(SelectionSpecId.JQuery);
17 18 mExpression = UtilsCommon.assertNotNullNotEmpty("pExpression", pExpression);
18 19 }
19 -
20 +
20 21 public String getExpression()
21 22 {
22 23 return mExpression;