Subversion Repository Public Repository

litesoft

Diff Revisions 610 vs 849 for /trunk/Java/GWT/Dev/src/org/litesoft/GWT/client/dev/ui/testplan/TestPlanActionClickTableCell.java

Diff revisions: vs.
  @@ -10,14 +10,17 @@
10 10
11 11 public class TestPlanActionClickTableCell implements TestPlanAction
12 12 {
13 + private static final long serialVersionUID = 1L;
14 +
13 15 public static final String FORM = "ClickTableCell";
14 16
15 - private Integer mNth;
16 - private int mRow;
17 - private int mCol;
18 - private KeyboardKeyModifier mKeyboardKeyModifier;
17 + private /* final */ Integer mNth;
18 + private /* final */ int mRow;
19 + private /* final */ int mCol;
20 + private /* final */ KeyboardKeyModifier mKeyboardKeyModifier;
19 21
20 - @Deprecated TestPlanActionClickTableCell()
22 + @SuppressWarnings({"deprecation", "UnusedDeclaration"}) @Deprecated /** for Serialization */
23 + protected TestPlanActionClickTableCell()
21 24 {
22 25 }
23 26