📄 inputtransferselecttag.java
字号:
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi space
// Source File Name: InputTransferSelectTag.java
package org.apache.struts2.views.jsp.ui;
import com.opensymphony.xwork2.util.ValueStack;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts2.components.Component;
import org.apache.struts2.components.InputTransferSelect;
// Referenced classes of package org.apache.struts2.views.jsp.ui:
// AbstractListTag
public class InputTransferSelectTag extends AbstractListTag
{
private static final long serialVersionUID = 0x379dd1484f8ec50L;
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;
public InputTransferSelectTag()
{
}
public Component getBean(ValueStack stack, HttpServletRequest req, HttpServletResponse res)
{
return new InputTransferSelect(stack, req, res);
}
protected void populateParams()
{
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 String getSize()
{
return size;
}
public void setSize(String size)
{
this.size = size;
}
public String getMultiple()
{
return multiple;
}
public void setMultiple(String multiple)
{
this.multiple = multiple;
}
public String getAllowRemoveAll()
{
return allowRemoveAll;
}
public void setAllowRemoveAll(String allowRemoveAll)
{
this.allowRemoveAll = allowRemoveAll;
}
public String getAllowUpDown()
{
return allowUpDown;
}
public void setAllowUpDown(String allowUpDown)
{
this.allowUpDown = allowUpDown;
}
public String getLeftTitle()
{
return leftTitle;
}
public void setLeftTitle(String leftTitle)
{
this.leftTitle = leftTitle;
}
public String getRightTitle()
{
return rightTitle;
}
public void setRightTitle(String rightTitle)
{
this.rightTitle = rightTitle;
}
public String getButtonCssClass()
{
return buttonCssClass;
}
public void setButtonCssClass(String buttonCssClass)
{
this.buttonCssClass = buttonCssClass;
}
public String getButtonCssStyle()
{
return buttonCssStyle;
}
public void setButtonCssStyle(String buttonCssStyle)
{
this.buttonCssStyle = buttonCssStyle;
}
public String getAddLabel()
{
return addLabel;
}
public void setAddLabel(String addLabel)
{
this.addLabel = addLabel;
}
public String getRemoveLabel()
{
return removeLabel;
}
public void setRemoveLabel(String removeLabel)
{
this.removeLabel = removeLabel;
}
public String getRemoveAllLabel()
{
return removeAllLabel;
}
public void setRemoveAllLabel(String removeAllLabel)
{
this.removeAllLabel = removeAllLabel;
}
public String getUpLabel()
{
return upLabel;
}
public void setUpLabel(String upLabel)
{
this.upLabel = upLabel;
}
public String getDownLabel()
{
return downLabel;
}
public void setDownLabel(String downLabel)
{
this.downLabel = downLabel;
}
public String getHeaderKey()
{
return headerKey;
}
public void setHeaderKey(String headerKey)
{
this.headerKey = headerKey;
}
public String getHeaderValue()
{
return headerValue;
}
public void setHeaderValue(String headerValue)
{
this.headerValue = headerValue;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -