com.sun.webui.jsf.component
Class WebuiComponent

java.lang.Object
  extended by javax.faces.component.UIComponent
      extended by javax.faces.component.UIComponentBase
          extended by com.sun.webui.jsf.component.WebuiComponent
All Implemented Interfaces:
javax.faces.component.StateHolder
Direct Known Subclasses:
Anchor, TabContainer, TabContent, TableBase, TableColumnBase, TableRowGroupBase

public abstract class WebuiComponent
extends javax.faces.component.UIComponentBase

Base class for components which need to extend UIComponentBase.


Constructor Summary
WebuiComponent()
           
 
Method Summary
 void processDecodes(javax.faces.context.FacesContext context)
          Specialized decode behavior on top of that provided by the superclass.
 void processUpdates(javax.faces.context.FacesContext context)
          Specialized model update behavior on top of that provided by the superclass.
 void processValidators(javax.faces.context.FacesContext context)
          Specialized validation behavior on top of that provided by the superclass.
 void setId(java.lang.String id)
          The component identifier for this component.
 void setRendered(boolean rendered)
          Use the rendered attribute to indicate whether the HTML code for the component should be included in the rendered HTML page.
 
Methods inherited from class javax.faces.component.UIComponentBase
broadcast, decode, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributes, getChildCount, getChildren, getClientId, getFacet, getFacetCount, getFacets, getFacetsAndChildren, getId, getParent, getRendererType, getRendersChildren, getValueBinding, getValueExpression, invokeOnComponent, isRendered, isTransient, processRestoreState, processSaveState, queueEvent, restoreAttachedState, restoreState, saveAttachedState, saveState, setParent, setRendererType, setTransient, setValueBinding, setValueExpression
 
Methods inherited from class javax.faces.component.UIComponent
encodeAll, getContainerClientId, getFamily
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WebuiComponent

public WebuiComponent()
Method Detail

setId

public void setId(java.lang.String id)
The component identifier for this component. This value must be unique within the closest parent component that is a naming container.

Overrides:
setId in class javax.faces.component.UIComponentBase

setRendered

public void setRendered(boolean rendered)
Use the rendered attribute to indicate whether the HTML code for the component should be included in the rendered HTML page. If set to false, the rendered HTML page does not include the HTML for the component. If the component is not rendered, it is also not processed on any subsequent form submission.

Overrides:
setRendered in class javax.faces.component.UIComponentBase

processDecodes

public void processDecodes(javax.faces.context.FacesContext context)

Specialized decode behavior on top of that provided by the superclass.

Overrides:
processDecodes in class javax.faces.component.UIComponentBase
Parameters:
context - FacesContext for this request.

processValidators

public void processValidators(javax.faces.context.FacesContext context)

Specialized validation behavior on top of that provided by the superclass.

Overrides:
processValidators in class javax.faces.component.UIComponentBase
Parameters:
context - FacesContext for this request.

processUpdates

public void processUpdates(javax.faces.context.FacesContext context)

Specialized model update behavior on top of that provided by the superclass.

Overrides:
processUpdates in class javax.faces.component.UIComponentBase
Parameters:
context - FacesContext for this request.


Copyright © 2008 Sun Microsystems, Inc. All Rights Reserved.