mirror of
https://github.com/apache/struts.git
synced 2026-09-12 17:15:02 +00:00
Adds missing tag attribute field
This commit is contained in:
@@ -29,6 +29,7 @@ public abstract class AbstractListTag extends AbstractUITag {
|
||||
protected String list;
|
||||
protected String listKey;
|
||||
protected String listValue;
|
||||
protected String listValueKey;
|
||||
protected String listLabelKey;
|
||||
protected String listCssClass;
|
||||
protected String listCssStyle;
|
||||
@@ -41,6 +42,7 @@ public abstract class AbstractListTag extends AbstractUITag {
|
||||
listUIBean.setList(list);
|
||||
listUIBean.setListKey(listKey);
|
||||
listUIBean.setListValue(listValue);
|
||||
listUIBean.setListValueKey(listValueKey);
|
||||
listUIBean.setListLabelKey(listLabelKey);
|
||||
listUIBean.setListCssClass(listCssClass);
|
||||
listUIBean.setListCssStyle(listCssStyle);
|
||||
@@ -59,6 +61,10 @@ public abstract class AbstractListTag extends AbstractUITag {
|
||||
this.listValue = listValue;
|
||||
}
|
||||
|
||||
public void setListValueKey(String listValueKey) {
|
||||
this.listValueKey = listValueKey;
|
||||
}
|
||||
|
||||
public void setListLabelKey(String listLabelKey) {
|
||||
this.listLabelKey = listLabelKey;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user