FileDocCategorySizeDatePackage
InputTransferSelectTag.javaAPI DocExample5723Mon Jul 23 13:26:48 BST 2007org.apache.struts2.views.jsp.ui

InputTransferSelectTag

public class InputTransferSelectTag extends AbstractListTag
InputTransferSelect jsp tag.

Fields Summary
private static final long
serialVersionUID
protected String
size
protected String
multiple
protected String
allowRemoveAll
protected String
allowUpDown
protected String
leftTitle
protected String
rightTitle
protected String
buttonCssClass
protected String
buttonCssStyle
protected String
addLabel
protected String
removeLabel
protected String
removeAllLabel
protected String
upLabel
protected String
downLabel
protected String
headerKey
protected String
headerValue
Constructors Summary
Methods Summary
public java.lang.StringgetAddLabel()

        return addLabel;
    
public java.lang.StringgetAllowRemoveAll()

        return allowRemoveAll;
    
public java.lang.StringgetAllowUpDown()

        return allowUpDown;
    
public org.apache.struts2.components.ComponentgetBean(com.opensymphony.xwork2.util.ValueStack stack, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)


            
        return new InputTransferSelect(stack, req, res);
    
public java.lang.StringgetButtonCssClass()

        return buttonCssClass;
    
public java.lang.StringgetButtonCssStyle()

        return buttonCssStyle;
    
public java.lang.StringgetDownLabel()

        return downLabel;
    
public java.lang.StringgetHeaderKey()

        return headerKey;
    
public java.lang.StringgetHeaderValue()

        return headerValue;
    
public java.lang.StringgetLeftTitle()

        return leftTitle;
    
public java.lang.StringgetMultiple()

        return multiple;
    
public java.lang.StringgetRemoveAllLabel()

        return removeAllLabel;
    
public java.lang.StringgetRemoveLabel()

        return removeLabel;
    
public java.lang.StringgetRightTitle()

        return rightTitle;
    
public java.lang.StringgetSize()

        return size;
    
public java.lang.StringgetUpLabel()

        return upLabel;
    
protected voidpopulateParams()

        super.populateParams();

        InputTransferSelect inputTransferSelect = (InputTransferSelect) component;
        inputTransferSelect.setSize(size);
        inputTransferSelect.setMultiple(multiple);
        inputTransferSelect.setAllowRemoveAll(allowRemoveAll);
        inputTransferSelect.setAllowUpDown(allowUpDown);
        inputTransferSelect.setLeftTitle(leftTitle);
        inputTransferSelect.setRightTitle(rightTitle);

        inputTransferSelect.setButtonCssClass(buttonCssClass);
        inputTransferSelect.setButtonCssStyle(buttonCssStyle);

        inputTransferSelect.setAddLabel(addLabel);
        inputTransferSelect.setRemoveLabel(removeLabel);
        inputTransferSelect.setRemoveAllLabel(removeAllLabel);
        inputTransferSelect.setUpLabel(upLabel);
        inputTransferSelect.setDownLabel(downLabel);
        inputTransferSelect.setHeaderKey(headerKey);
        inputTransferSelect.setHeaderValue(headerValue);
    
public voidsetAddLabel(java.lang.String addLabel)

        this.addLabel = addLabel;
    
public voidsetAllowRemoveAll(java.lang.String allowRemoveAll)

        this.allowRemoveAll = allowRemoveAll;
    
public voidsetAllowUpDown(java.lang.String allowUpDown)

        this.allowUpDown = allowUpDown;
    
public voidsetButtonCssClass(java.lang.String buttonCssClass)

        this.buttonCssClass = buttonCssClass;
    
public voidsetButtonCssStyle(java.lang.String buttonCssStyle)

        this.buttonCssStyle = buttonCssStyle;
    
public voidsetDownLabel(java.lang.String downLabel)

        this.downLabel = downLabel;
    
public voidsetHeaderKey(java.lang.String headerKey)

        this.headerKey = headerKey;
    
public voidsetHeaderValue(java.lang.String headerValue)

        this.headerValue = headerValue;
    
public voidsetLeftTitle(java.lang.String leftTitle)

        this.leftTitle = leftTitle;
    
public voidsetMultiple(java.lang.String multiple)

        this.multiple = multiple;
    
public voidsetRemoveAllLabel(java.lang.String removeAllLabel)

        this.removeAllLabel = removeAllLabel;
    
public voidsetRemoveLabel(java.lang.String removeLabel)

        this.removeLabel = removeLabel;
    
public voidsetRightTitle(java.lang.String rightTitle)

        this.rightTitle = rightTitle;
    
public voidsetSize(java.lang.String size)

        this.size = size;
    
public voidsetUpLabel(java.lang.String upLabel)

        this.upLabel = upLabel;