Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -1,27 +1,28 @@
1 + // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
1 2 package org.litesoft.GWT.client.dev.ui.actions;
2 3
3 4 public class SetAttributeActionSpec extends ActionSpec
4 5 {
5 6 private String mName;
6 7 private String mValue;
7 -
8 +
8 9 @Deprecated
9 10 protected SetAttributeActionSpec()
10 11 {
11 12 }
12 -
13 +
13 14 public SetAttributeActionSpec(String pName, String pValue)
14 15 {
15 16 super(ActionSpecId.SetAttribute);
16 17 mName = pName;
17 18 mValue = pValue;
18 19 }
19 -
20 +
20 21 public String getName()
21 22 {
22 23 return mName;
23 24 }
24 -
25 +
25 26 public String getValue()
26 27 {
27 28 return mValue;