Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 49 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/SelectionSpec.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 java.io.*;
  @@ -5,23 +6,23 @@
5 6 import org.litesoft.core.util.*;
6 7
7 8 /**
8 - * Provides parameters to a DOM crawling algorithm.
9 + * Provides parameters to a DOM crawling algorithm.
9 10 */
10 11 public abstract class SelectionSpec implements Serializable
11 12 {
12 13 private SelectionSpecId mId;
13 -
14 +
14 15 @Deprecated
15 16 protected SelectionSpec()
16 17 {
17 18 }
18 -
19 +
19 20 public SelectionSpec(SelectionSpecId pId)
20 21 {
21 22 UtilsCommon.assertNotNull("pId", pId);
22 23 mId = pId;
23 24 }
24 -
25 +
25 26 public SelectionSpecId getId()
26 27 {
27 28 return mId;