Author: adubovsky
Date: 2008-06-10 08:42:39 -0400 (Tue, 10 Jun 2008)
New Revision: 8982
Modified:
branches/3.1.x/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java
Log:
Add properties and methods
Modified:
branches/3.1.x/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java
===================================================================
---
branches/3.1.x/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java 2008-06-10
12:42:06 UTC (rev 8981)
+++
branches/3.1.x/test-applications/facelets/src/main/java/listShuttle/ListShuttle.java 2008-06-10
12:42:39 UTC (rev 8982)
@@ -39,6 +39,7 @@
private String listsHeight;
private String sourceCaptionLabel;
private String targetCaptionLabel;
+ private String controlsType;
public ListShuttle() {
this.first = 1;
@@ -68,9 +69,18 @@
this.targetCaptionLabel = "targetCaptionLabel";
this.targetValue = new ArrayList<Data>();
this.sourceValue = new ArrayList<Data>();
+ this.controlsType = "button";
addNewItem();
}
+ public String getControlsType() {
+ return controlsType;
+ }
+
+ public void setControlsType(String controlsType) {
+ this.controlsType = controlsType;
+ }
+
public int getFirst() {
return first;
}