Author: gmaksimenko
Date: 2008-04-29 10:40:48 -0400 (Tue, 29 Apr 2008)
New Revision: 8325
Modified:
trunk/test-applications/jsp/src/main/java/pickList/PickList.java
Log:
Erase tests for dir and size attributes.
Modified: trunk/test-applications/jsp/src/main/java/pickList/PickList.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/pickList/PickList.java 2008-04-29 14:40:35
UTC (rev 8324)
+++ trunk/test-applications/jsp/src/main/java/pickList/PickList.java 2008-04-29 14:40:48
UTC (rev 8325)
@@ -15,7 +15,6 @@
public class PickList {
public String copyAllControlLabel;
public String copyControlLabel;
- public String dir;
public boolean disabled;
public boolean fastOrderControlsVisible;
public boolean immediate;
@@ -26,7 +25,6 @@
public String removeControlLabel;
public boolean rendered;
public boolean showButtonLabels;
- public int size;
public String sourceListWidth;
public boolean switchByClick;
public String targetListWidth;
@@ -43,7 +41,6 @@
public PickList() {
this.copyAllControlLabel = "copyAllControlLabel";
this.copyControlLabel = "copyControlLabel";
- this.dir = "alert('work')";
this.disabled = false;
this.fastOrderControlsVisible = true;
this.immediate = false;
@@ -55,7 +52,6 @@
this.removeControlLabel = "removeControlLabel";
this.rendered = true;
this.showButtonLabels = true;
- this.size = 10;
this.sourceListWidth = "300";
this.switchByClick = false;
this.targetListWidth = "400";
@@ -137,14 +133,6 @@
this.copyControlLabel = copyControlLabel;
}
- public String getDir() {
- return dir;
- }
-
- public void setDir(String dir) {
- this.dir = dir;
- }
-
public boolean isDisabled() {
return disabled;
}
@@ -217,14 +205,6 @@
this.rendered = rendered;
}
- public int getSize() {
- return size;
- }
-
- public void setSize(int size) {
- this.size = size;
- }
-
public String getSourceListWidth() {
return sourceListWidth;
}