Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 849 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/actions/SetAttributeActionSpec.java

Diff revisions: vs.
  @@ -3,17 +3,19 @@
3 3
4 4 public class SetAttributeActionSpec extends ActionSpec
5 5 {
6 - private String mName;
7 - private String mValue;
6 + private static final long serialVersionUID = 1L;
8 7
9 - @Deprecated
8 + private /* final */ String mName;
9 + private /* final */ String mValue;
10 +
11 + @SuppressWarnings({"deprecation", "UnusedDeclaration"}) @Deprecated /** for Serialization */
10 12 protected SetAttributeActionSpec()
11 13 {
12 14 }
13 15
14 - public SetAttributeActionSpec(String pName, String pValue)
16 + public SetAttributeActionSpec( String pName, String pValue )
15 17 {
16 - super(ActionSpecId.SetAttribute);
18 + super( ActionSpecId.SetAttribute );
17 19 mName = pName;
18 20 mValue = pValue;
19 21 }