Subversion Repository Public Repository

litesoft

Diff Revisions 821 vs 849 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/inspection/ElementSelectionSpec.java

Diff revisions: vs.
  @@ -7,11 +7,13 @@
7 7
8 8 public class ElementSelectionSpec extends SelectionSpec
9 9 {
10 - private Map<String, String> mAttributes = new HashMap<String, String>();
11 - private String mElementName;
10 + private static final long serialVersionUID = 1L;
12 11
13 - @Deprecated
14 - public ElementSelectionSpec()
12 + private /* final */ Map<String, String> mAttributes = new HashMap<String, String>();
13 + private /* final */ String mElementName;
14 +
15 + @SuppressWarnings({"deprecation", "UnusedDeclaration"}) @Deprecated /** for Serialization */
16 + protected ElementSelectionSpec()
15 17 {
16 18 }
17 19