[richfaces-svn-commits] JBoss Rich Faces SVN: r8974 - branches/3.1.x/test-applications/jsp/src/main/java/listShuttle.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Tue Jun 10 07:55:20 EDT 2008


Author: adubovsky
Date: 2008-06-10 07:55:20 -0400 (Tue, 10 Jun 2008)
New Revision: 8974

Modified:
   branches/3.1.x/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java
Log:


Modified: branches/3.1.x/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java
===================================================================
--- branches/3.1.x/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java	2008-06-10 10:52:49 UTC (rev 8973)
+++ branches/3.1.x/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java	2008-06-10 11:55:20 UTC (rev 8974)
@@ -21,6 +21,7 @@
 	private boolean showAllSourceData;
 	private boolean showAllTargetData;
 	private boolean switchByClick;
+	private boolean rendered;
 	private ArrayList<Data> sourceValue;
 	private ArrayList<Data> targetValue;
 	private ArrayList<String> info;
@@ -39,6 +40,9 @@
 	private String listsHeight;
 	private String sourceCaptionLabel;
 	private String targetCaptionLabel;
+	private String controlsType;
+	private String moveControlsVerticalAlign;
+	private String orderControlsVerticalAlign;
 
 	public ListShuttle() {
 		this.first = 1;
@@ -51,6 +55,7 @@
 		this.moveControlsVisible = true;
 		this.orderControlsVisible = true;
 		this.showButtonLabels = true;
+		this.rendered = true;
 		this.bottomControlLabel = "bottom";
 		this.copyAllControlLabel = "copy all";
 		this.copyControlLabel = "copy";
@@ -68,9 +73,44 @@
 		this.targetCaptionLabel = "targetCaptionLabel";
 		this.targetValue = new ArrayList<Data>();
 		this.sourceValue = new ArrayList<Data>();
+		this.controlsType = "button";
+		this.moveControlsVerticalAlign = "center";
+		this.orderControlsVerticalAlign = "center";
 		addNewItem();
 	}
 
+	public boolean getRendered() {
+		return rendered;
+	}
+
+	public void setRendered(boolean rendered) {
+		this.rendered = rendered;
+	}
+	
+	public String getMoveControlsVerticalAlign() {
+		return moveControlsVerticalAlign;
+	}
+
+	public void setMoveControlsVerticalAlign(String moveControlsVerticalAlign) {
+		this.moveControlsVerticalAlign = moveControlsVerticalAlign;
+	}
+	
+	public String getOrderControlsVerticalAlign() {
+		return orderControlsVerticalAlign;
+	}
+
+	public void setOrderControlsVerticalAlign(String orderControlsVerticalAlign) {
+		this.orderControlsVerticalAlign = orderControlsVerticalAlign;
+	}
+	
+	public String getControlsType() {
+		return controlsType;
+	}
+
+	public void setControlsType(String controlsType) {
+		this.controlsType = controlsType;
+	}
+	
 	public int getFirst() {
 		return first;
 	}




More information about the richfaces-svn-commits mailing list