Author: ddewolf
Date: Mon Jan  8 13:55:49 2007
New Revision: 494210

URL: http://svn.apache.org/viewvc?view=rev&rev=494210
Log:
Adding up down attributes to optiontransferselect

Modified:
    
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/OptionTransferSelectTag.java

Modified: 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/OptionTransferSelectTag.java
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/OptionTransferSelectTag.java?view=diff&rev=494210&r1=494209&r2=494210
==============================================================================
--- 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/OptionTransferSelectTag.java
 (original)
+++ 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/jsp/ui/OptionTransferSelectTag.java
 Mon Jan  8 13:55:49 2007
@@ -173,6 +173,53 @@
         this.allowAddToRight = allowAddToRight;
     }
 
+    public String getAllowUpDownOnLeft() {
+        return allowUpDownOnLeft;
+    }
+
+    public void setAllowUpDownOnLeft(String allowUpDownOnLeft) {
+        this.allowUpDownOnLeft = allowUpDownOnLeft;
+    }
+
+    public String getAllowUpDownOnRight() {
+        return allowUpDownOnRight;
+    }
+
+    public void setAllowUpDownOnRight(String allowUpDownOnRight) {
+        this.allowUpDownOnRight = allowUpDownOnRight;
+    }
+
+    public String getLeftUpLabel() {
+        return leftUpLabel;
+    }
+
+    public void setLeftUpLabel(String leftUpLabel) {
+        this.leftUpLabel = leftUpLabel;
+    }
+
+    public String getLeftDownLabel() {
+        return leftDownLabel;
+    }
+
+    public void setLeftDownLabel(String leftDownLabel) {
+        this.leftDownLabel = leftDownLabel;
+    }
+
+    public String getRightUpLabel() {
+        return rightUpLabel;
+    }
+
+    public void setRightUpLabel(String rightUpLabel) {
+        this.rightUpLabel = rightUpLabel;
+    }
+
+    public String getRightDownLabel() {
+        return rightDownLabel;
+    }
+
+    public void setRightDownLabel(String rightDownLabel) {
+        this.rightDownLabel = rightDownLabel;
+    }
 
     public String getLeftTitle() {
         return leftTitle;


Reply via email to