Custom tag that represents an input form, associated with a bean whose
properties correspond to the various fields of the form.
| Method from org.apache.strutsel.taglib.html.ELFormTag Detail: |
public int doStartTag() throws JspException {
evaluateExpressions();
return(super.doStartTag());
}
|
public String getAcceptCharsetExpr() {
return (acceptCharsetExpr);
}
Getter method for "acceptCharset" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getActionExpr() {
return (actionExpr);
}
Getter method for "action" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getDisabledExpr() {
return (disabledExpr);
}
Getter method for "disabled" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getEnctypeExpr() {
return (enctypeExpr);
}
Getter method for "enctype" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getFocusExpr() {
return (focusExpr);
}
Getter method for "focus" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getFocusIndexExpr() {
return (focusIndexExpr);
}
Getter method for "focusIndex" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getMethodExpr() {
return (methodExpr);
}
Getter method for "method" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getOnresetExpr() {
return (onresetExpr);
}
Getter method for "onreset" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getOnsubmitExpr() {
return (onsubmitExpr);
}
Getter method for "onsubmit" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getReadonlyExpr() {
return (readonlyExpr);
}
Getter method for "readonly" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getScriptLanguageExpr() {
return (scriptLanguageExpr);
}
Getter method for "scriptLanguage" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getStyleClassExpr() {
return (styleClassExpr);
}
Getter method for "styleClass" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getStyleExpr() {
return (styleExpr);
}
Getter method for "style" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getStyleIdExpr() {
return (styleIdExpr);
}
Getter method for "styleId" tag attribute.
(Mapping set in associated BeanInfo class.) |
public String getTargetExpr() {
return (targetExpr);
}
Getter method for "target" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void release() {
super.release();
setActionExpr(null);
setDisabledExpr(null);
setEnctypeExpr(null);
setFocusExpr(null);
setFocusIndexExpr(null);
setMethodExpr(null);
setOnresetExpr(null);
setOnsubmitExpr(null);
setReadonlyExpr(null);
setScriptLanguageExpr(null);
setStyleExpr(null);
setStyleClassExpr(null);
setStyleIdExpr(null);
setTargetExpr(null);
setAcceptCharsetExpr(null);
}
Resets attribute values for tag reuse. |
public void setAcceptCharsetExpr(String acceptCharsetExpr) {
this.acceptCharsetExpr = acceptCharsetExpr;
}
Setter method for "acceptCharset" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setActionExpr(String actionExpr) {
this.actionExpr = actionExpr;
}
Setter method for "action" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setDisabledExpr(String disabledExpr) {
this.disabledExpr = disabledExpr;
}
Setter method for "disabled" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setEnctypeExpr(String enctypeExpr) {
this.enctypeExpr = enctypeExpr;
}
Setter method for "enctype" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setFocusExpr(String focusExpr) {
this.focusExpr = focusExpr;
}
Setter method for "focus" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setFocusIndexExpr(String focusIndexExpr) {
this.focusIndexExpr = focusIndexExpr;
}
Setter method for "focusIndex" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setMethodExpr(String methodExpr) {
this.methodExpr = methodExpr;
}
Setter method for "method" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setOnresetExpr(String onresetExpr) {
this.onresetExpr = onresetExpr;
}
Setter method for "onreset" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setOnsubmitExpr(String onsubmitExpr) {
this.onsubmitExpr = onsubmitExpr;
}
Setter method for "onsubmit" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setReadonlyExpr(String readonlyExpr) {
this.readonlyExpr = readonlyExpr;
}
Setter method for "readonly" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setScriptLanguageExpr(String scriptLanguageExpr) {
this.scriptLanguageExpr = scriptLanguageExpr;
}
Setter method for "scriptLanguage" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setStyleClassExpr(String styleClassExpr) {
this.styleClassExpr = styleClassExpr;
}
Setter method for "styleClass" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setStyleExpr(String styleExpr) {
this.styleExpr = styleExpr;
}
Setter method for "style" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setStyleIdExpr(String styleIdExpr) {
this.styleIdExpr = styleIdExpr;
}
Setter method for "styleId" tag attribute.
(Mapping set in associated BeanInfo class.) |
public void setTargetExpr(String targetExpr) {
this.targetExpr = targetExpr;
}
Setter method for "target" tag attribute.
(Mapping set in associated BeanInfo class.) |