[richfaces-svn-commits] JBoss Rich Faces SVN: r13756 - trunk/test-applications/jsp/src/main/java/listShuttle.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Wed Apr 22 06:47:38 EDT 2009


Author: Vadim Mikovoz
Date: 2009-04-22 06:47:38 -0400 (Wed, 22 Apr 2009)
New Revision: 13756

Modified:
   trunk/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java
Log:


Modified: trunk/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java	2009-04-22 10:46:56 UTC (rev 13755)
+++ trunk/test-applications/jsp/src/main/java/listShuttle/ListShuttle.java	2009-04-22 10:47:38 UTC (rev 13756)
@@ -39,6 +39,8 @@
 	private String targetListWidth;
 	private String sourceListWidth;
 	private String listsHeight;
+	private String controlsType;
+	private String controlsVerticalAlign;
 	private String sourceCaptionLabel;
 	private String targetCaptionLabel;
 	private HtmlListShuttle htmlListShuttle = null;
@@ -68,19 +70,21 @@
 		this.showButtonLabels = true;
 		this.sourceRequired = false;
 		this.targetRequired = false;
-		this.bottomControlLabel = "bottom";
-		this.copyAllControlLabel = "copy all";
-		this.copyControlLabel = "copy";
-		this.downControlLabel = "down";
-		this.removeAllControlLabel = "remove all";
-		this.removeControlLabel = "remove";
-		this.topControlLabel = "top";
-		this.upControlLabel = "up";
+		this.bottomControlLabel = "bottomTest";
+		this.copyAllControlLabel = "copy allTest";
+		this.copyControlLabel = "copyTest";
+		this.downControlLabel = "downTest";
+		this.controlsType = "button";
+		this.removeAllControlLabel = "remove allTest";
+		this.removeControlLabel = "removeTest";
+		this.topControlLabel = "topTest";
+		this.upControlLabel = "upTest";
 		this.info = new ArrayList<String>();
 		this.switchByClick = false;
 		this.targetListWidth = "450";
 		this.sourceListWidth = "450";
 		this.listsHeight = "300";
+		this.controlsVerticalAlign = "middle";
 		this.sourceCaptionLabel = "sourceCaptionLabel";
 		this.targetCaptionLabel = "targetCaptionLabel";
 		this.targetValue = new ArrayList<Data>();
@@ -103,7 +107,7 @@
 
 	public void setFastOrderControlsVisible(boolean fastOrderControlsVisible) {
 		this.fastOrderControlsVisible = fastOrderControlsVisible;
-	}
+	}	
 
 	public boolean isMoveControlsVisible() {
 		return moveControlsVisible;
@@ -148,6 +152,14 @@
 	public void setBottomControlLabel(String bottomControlLabel) {
 		this.bottomControlLabel = bottomControlLabel;
 	}
+	
+	public String getControlsType() {
+		return controlsType;
+	}
+	
+	public void setControlsType(String controlsType) {
+		this.controlsType = controlsType;
+	}
 
 	public String getCopyAllControlLabel() {
 		return copyAllControlLabel;
@@ -319,6 +331,14 @@
 	public void setListsHeight(String listsHeight) {
 		this.listsHeight = listsHeight;
 	}
+	
+	public String getControlsVerticalAlign() {
+		return controlsVerticalAlign;
+	}
+	
+	public void setControlsVerticalAlign(String controlsVerticalAlign) {
+		this.controlsVerticalAlign = controlsVerticalAlign;
+	}
 
 	public String getSourceCaptionLabel() {
 		return sourceCaptionLabel;




More information about the richfaces-svn-commits mailing list