public abstract class AbstractFacesTag
extends javax.faces.webapp.UIComponentTag
Abstract base class for custom component tags for the Struts-Faces Integration Library.
Modifier and Type | Field and Description |
---|---|
protected String |
bundle
The servlet context attribute under which our
MessageResources bundle is stored. |
protected String |
style
The CSS style(s) used to render this component.
|
protected String |
styleClass
The CSS style class(es) used to render this component.
|
protected String |
value
The literal value to be rendered.
|
bodyContent, pageContext, UNIQUE_ID_PREFIX
Constructor and Description |
---|
AbstractFacesTag() |
Modifier and Type | Method and Description |
---|---|
abstract String |
getComponentType()
Return the component type of the component to be created for
this tag.
|
abstract String |
getRendererType()
Return the
rendererType to be used for rendering
our component. |
void |
release()
Release any variables allocated during use of this tag instance.
|
protected void |
setBooleanAttribute(javax.faces.component.UIComponent component,
String name,
String value)
If the specified attribute value is not
null
use it to either store a value binding expression for the
specified attribute name, or store it as the literal value
of the attribute. |
void |
setBundle(String bundle) |
protected void |
setIntegerAttribute(javax.faces.component.UIComponent component,
String name,
String value)
If the specified attribute value is not
null
use it to either store a value binding expression for the
specified attribute name, or store it as the literal value
of the attribute. |
protected void |
setProperties(javax.faces.component.UIComponent component)
Override attributes set on this tag instance.
|
protected void |
setStringAttribute(javax.faces.component.UIComponent component,
String name,
String value)
If the specified attribute value is not
null
use it to either store a value binding expression for the
specified attribute name, or store it as the literal value
of the attribute. |
void |
setStyle(String style) |
void |
setStyleClass(String styleClass) |
void |
setValue(String value) |
createComponent, getParentUIComponentTag, hasBinding, isSuppressed, isValueReference, setBinding, setRendered
addChild, addFacet, addVerbatimAfterComponent, addVerbatimBeforeComponent, createVerbatimComponent, createVerbatimComponentFromBodyContent, doAfterBody, doEndTag, doInitBody, doStartTag, encodeBegin, encodeChildren, encodeEnd, findComponent, getBodyContent, getComponentInstance, getCreated, getCreatedComponents, getDoAfterBodyValue, getDoEndValue, getDoStartValue, getFacesContext, getFacesJspId, getFacetName, getId, getIndexOfNextChildTag, getJspId, getParent, getParentUIComponentClassicTagBase, getPreviousOut, setBodyContent, setId, setJspId, setPageContext, setParent, setupResponseWriter
protected String bundle
The servlet context attribute under which our
MessageResources
bundle is stored.
protected String style
The CSS style(s) used to render this component.
protected String styleClass
The CSS style class(es) used to render this component.
protected String value
The literal value to be rendered.
public void setBundle(String bundle)
public void setStyle(String style)
public void setStyleClass(String styleClass)
public void setValue(String value)
public abstract String getComponentType()
Return the component type of the component to be created for this tag.
getComponentType
in class javax.faces.webapp.UIComponentTagBase
public abstract String getRendererType()
Return the rendererType
to be used for rendering
our component.
getRendererType
in class javax.faces.webapp.UIComponentTagBase
public void release()
Release any variables allocated during use of this tag instance.
release
in interface javax.servlet.jsp.tagext.Tag
release
in class javax.faces.webapp.UIComponentTag
protected void setProperties(javax.faces.component.UIComponent component)
Override attributes set on this tag instance.
setProperties
in class javax.faces.webapp.UIComponentTag
component
- Component whose attributes should be overriddenprotected void setBooleanAttribute(javax.faces.component.UIComponent component, String name, String value)
If the specified attribute value is not null
use it to either store a value binding expression for the
specified attribute name, or store it as the literal value
of the attribute.
component
- UIComponent
whose attribute
is to be setname
- Attribute namevalue
- Attribute value (or null
)NumberFormatException
- if the value does not
contain a parsable integerReferenceSyntaxException
- if the expression has
invalid syntaxprotected void setIntegerAttribute(javax.faces.component.UIComponent component, String name, String value)
If the specified attribute value is not null
use it to either store a value binding expression for the
specified attribute name, or store it as the literal value
of the attribute.
component
- UIComponent
whose attribute
is to be setname
- Attribute namevalue
- Attribute value (or null
)NumberFormatException
- if the value does not
contain a parsable integerReferenceSyntaxException
- if the expression has
invalid syntaxprotected void setStringAttribute(javax.faces.component.UIComponent component, String name, String value)
If the specified attribute value is not null
use it to either store a value binding expression for the
specified attribute name, or store it as the literal value
of the attribute.
component
- UIComponent
whose attribute
is to be setname
- Attribute namevalue
- Attribute value (or null
)ReferenceSyntaxException
- if the expression has
invalid syntaxCopyright © 2000–2017 Apache Software Foundation. All rights reserved.