public class UIGraphic extends UIComponentBase
| Modifier and Type | Field and Description |
|---|---|
static String |
COMPONENT_FAMILY |
static String |
COMPONENT_TYPE |
| Constructor and Description |
|---|
UIGraphic() |
| Modifier and Type | Method and Description |
|---|---|
String |
getFamily() |
String |
getUrl() |
Object |
getValue() |
ValueBinding |
getValueBinding(String name)
Get the named value-binding associated with this component.
|
void |
restoreState(FacesContext context,
Object state)
Invoked in the "restore view" phase, this initialises this
object's members from the values saved previously into the
provided state object.
|
Object |
saveState(FacesContext context)
Invoked after the render phase has completed, this method
returns an object which can be passed to the restoreState
of some other instance of UIComponentBase to reset that
object's state to the same values as this object currently
has.
|
void |
setUrl(String url) |
void |
setValue(Object value) |
void |
setValueBinding(String name,
ValueBinding binding)
Put the provided value-binding into a map of value-bindings
associated with this component.
|
addFacesListener, broadcast, decode, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributes, getChildCount, getChildren, getClientId, getFacesContext, getFacesListeners, getFacet, getFacets, getFacetsAndChildren, getId, getParent, getRenderer, getRendererType, getRendersChildren, isRendered, isTransient, processDecodes, processRestoreState, processSaveState, processUpdates, processValidators, queueEvent, removeFacesListener, restoreAttachedState, saveAttachedState, setId, setParent, setRendered, setRendererType, setTransientpublic static final String COMPONENT_TYPE
public static final String COMPONENT_FAMILY
public String getUrl()
public void setUrl(String url)
public ValueBinding getValueBinding(String name)
UIComponentBaseValue-bindings are stored in a map associated with the component, though there is commonly a property (setter/getter methods) of the same name defined on the component itself which evaluates the value-binding when called.
getValueBinding in class UIComponentBasepublic void setValueBinding(String name, ValueBinding binding)
UIComponentBasesetValueBinding in class UIComponentBasepublic String getFamily()
getFamily in class UIComponentpublic void setValue(Object value)
public Object getValue()
public Object saveState(FacesContext context)
UIComponentBasesaveState in interface StateHoldersaveState in class UIComponentBasepublic void restoreState(FacesContext context, Object state)
UIComponentBaserestoreState in interface StateHolderrestoreState in class UIComponentBasestate - is an object previously returned by
the saveState method of this class.Copyright © 2012 Apache Software Foundation. All Rights Reserved.