| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of UIComponent in javax.faces.application | 
|---|
| Methods in javax.faces.application that return UIComponent | |
|---|---|
| abstract  UIComponent | Application.createComponent(String componentType)Create a new UIComponent subclass, using the mappings defined by previous calls to the addComponent method of this class. | 
| abstract  UIComponent | Application.createComponent(ValueBinding componentBinding,
                FacesContext context,
                String componentType)Create an object which has an associating "binding" expression tying the component to a user property. | 
| Uses of UIComponent in javax.faces.component | 
|---|
| Subclasses of UIComponent in javax.faces.component | |
|---|---|
|  class | UIColumnThis tag is commonly used as a child of the dataTable tag, to represent a column of data. | 
|  class | UICommandUICommand is a base abstraction for components that implement ActionSource. | 
|  class | UIComponentBaseStandard implementation of the UIComponent base class; all standard JSF components extend this class. | 
|  class | UIDataRepresents a component which has multiple "rows" of data. | 
|  class | UIFormsee Javadoc of JSF Specification | 
|  class | UIGraphicDisplays a graphical image. | 
|  class | UIInputsee Javadoc of JSF Specification | 
|  class | UIMessageJavadoc says default for showDetail is false, but Specs say it is true!? see Javadoc of JSF Specification | 
|  class | UIMessagessee Javadoc of JSF Specification | 
|  class | UINamingContainerBase class for components that provide a new "namespace" for the ids of their child components. | 
|  class | UIOutputDisplays a value to the user. | 
|  class | UIPanelsee Javadoc of JSF Specification | 
|  class | UIParameterThis tag associates a parameter name-value pair with the nearest parent UIComponent. | 
|  class | UISelectBooleanA component that allows the user to select or unselect an object. | 
|  class | UISelectItemA component representing a single option that the user can choose. | 
|  class | UISelectItemsThis tag associates a set of selection list items with the nearest parent UIComponent. | 
|  class | UISelectManyBase class for the various component classes that allow a user to select zero or more options from a set. | 
|  class | UISelectOneComponent for choosing one option out of a set of possibilities. | 
|  class | UIViewRootCreates a JSF View, which is a container that holds all of the components that are part of the view. | 
| Methods in javax.faces.component that return UIComponent | |
|---|---|
| abstract  UIComponent | UIComponent.findComponent(String expr) | 
|  UIComponent | UIComponentBase.findComponent(String expr)Standard method for finding other components by id, inherited by most UIComponent objects. | 
| abstract  UIComponent | UIComponent.getFacet(String name) | 
|  UIComponent | UIComponentBase.getFacet(String name) | 
|  UIComponent | UIColumn.getFooter() | 
|  UIComponent | UIData.getFooter() | 
|  UIComponent | UIColumn.getHeader() | 
|  UIComponent | UIData.getHeader() | 
| abstract  UIComponent | UIComponent.getParent() | 
|  UIComponent | UIComponentBase.getParent() | 
| Methods in javax.faces.component with parameters of type UIComponent | |
|---|---|
|  void | UIColumn.setFooter(UIComponent footer) | 
|  void | UIData.setFooter(UIComponent footer) | 
|  void | UIColumn.setHeader(UIComponent header) | 
|  void | UIData.setHeader(UIComponent header) | 
| abstract  void | UIComponent.setParent(UIComponent parent)For JSF-framework internal use only. | 
|  void | UIComponentBase.setParent(UIComponent parent) | 
| Uses of UIComponent in javax.faces.component.html | 
|---|
| Subclasses of UIComponent in javax.faces.component.html | |
|---|---|
|  class | HtmlCommandButton | 
|  class | HtmlCommandLink | 
|  class | HtmlDataTable | 
|  class | HtmlForm | 
|  class | HtmlGraphicImage | 
|  class | HtmlInputHiddenRenders as an HTML input tag with its type set to "hidden". | 
|  class | HtmlInputSecret | 
|  class | HtmlInputText | 
|  class | HtmlInputTextarea | 
|  class | HtmlMessage | 
|  class | HtmlMessages | 
|  class | HtmlOutputFormat | 
|  class | HtmlOutputLabel | 
|  class | HtmlOutputLink | 
|  class | HtmlOutputText | 
|  class | HtmlPanelGrid | 
|  class | HtmlPanelGroup | 
|  class | HtmlSelectBooleanCheckbox | 
|  class | HtmlSelectManyCheckbox | 
|  class | HtmlSelectManyListbox | 
|  class | HtmlSelectManyMenu | 
|  class | HtmlSelectOneListbox | 
|  class | HtmlSelectOneMenu | 
|  class | HtmlSelectOneRadio | 
| Uses of UIComponent in javax.faces.context | 
|---|
| Methods in javax.faces.context with parameters of type UIComponent | |
|---|---|
| abstract  void | ResponseWriter.startElement(String name,
             UIComponent component) | 
| Uses of UIComponent in javax.faces.convert | 
|---|
| Methods in javax.faces.convert with parameters of type UIComponent | |
|---|---|
|  Object | IntegerConverter.getAsObject(FacesContext facesContext,
            UIComponent uiComponent,
            String value) | 
|  Object | Converter.getAsObject(FacesContext context,
            UIComponent component,
            String value) | 
|  Object | ShortConverter.getAsObject(FacesContext facesContext,
            UIComponent uiComponent,
            String value) | 
|  Object | BooleanConverter.getAsObject(FacesContext facesContext,
            UIComponent uiComponent,
            String value) | 
|  Object | BigIntegerConverter.getAsObject(FacesContext facesContext,
            UIComponent uiComponent,
            String value) | 
|  Object | FloatConverter.getAsObject(FacesContext facesContext,
            UIComponent uiComponent,
            String value) | 
|  Object | DateTimeConverter.getAsObject(FacesContext context,
            UIComponent component,
            String value) | 
|  Object | NumberConverter.getAsObject(FacesContext facesContext,
            UIComponent uiComponent,
            String value) | 
|  Object | DoubleConverter.getAsObject(FacesContext facesContext,
            UIComponent uiComponent,
            String value) | 
|  Object | CharacterConverter.getAsObject(FacesContext facesContext,
            UIComponent uiComponent,
            String value) | 
|  Object | LongConverter.getAsObject(FacesContext facesContext,
            UIComponent uiComponent,
            String value) | 
|  Object | ByteConverter.getAsObject(FacesContext facesContext,
            UIComponent uiComponent,
            String value) | 
|  Object | BigDecimalConverter.getAsObject(FacesContext facesContext,
            UIComponent uiComponent,
            String value) | 
|  String | IntegerConverter.getAsString(FacesContext facesContext,
            UIComponent uiComponent,
            Object value) | 
|  String | Converter.getAsString(FacesContext context,
            UIComponent component,
            Object value) | 
|  String | ShortConverter.getAsString(FacesContext facesContext,
            UIComponent uiComponent,
            Object value) | 
|  String | BooleanConverter.getAsString(FacesContext facesContext,
            UIComponent uiComponent,
            Object value) | 
|  String | BigIntegerConverter.getAsString(FacesContext facesContext,
            UIComponent uiComponent,
            Object value) | 
|  String | FloatConverter.getAsString(FacesContext facesContext,
            UIComponent uiComponent,
            Object value) | 
|  String | DateTimeConverter.getAsString(FacesContext context,
            UIComponent component,
            Object value) | 
|  String | NumberConverter.getAsString(FacesContext facesContext,
            UIComponent uiComponent,
            Object value) | 
|  String | DoubleConverter.getAsString(FacesContext facesContext,
            UIComponent uiComponent,
            Object value) | 
|  String | CharacterConverter.getAsString(FacesContext facesContext,
            UIComponent uiComponent,
            Object value) | 
|  String | LongConverter.getAsString(FacesContext facesContext,
            UIComponent uiComponent,
            Object value) | 
|  String | ByteConverter.getAsString(FacesContext facesContext,
            UIComponent uiComponent,
            Object value) | 
|  String | BigDecimalConverter.getAsString(FacesContext facesContext,
            UIComponent uiComponent,
            Object value) | 
| Uses of UIComponent in javax.faces.event | 
|---|
| Methods in javax.faces.event that return UIComponent | |
|---|---|
|  UIComponent | FacesEvent.getComponent() | 
| Constructors in javax.faces.event with parameters of type UIComponent | |
|---|---|
| ActionEvent(UIComponent uiComponent) | |
| FacesEvent(UIComponent uiComponent) | |
| ValueChangeEvent(UIComponent uiComponent,
                 Object oldValue,
                 Object newValue) | |
| Uses of UIComponent in javax.faces.render | 
|---|
| Methods in javax.faces.render with parameters of type UIComponent | |
|---|---|
|  void | Renderer.decode(FacesContext context,
       UIComponent component) | 
|  void | Renderer.encodeBegin(FacesContext context,
            UIComponent component) | 
|  void | Renderer.encodeChildren(FacesContext context,
               UIComponent component)Render all children if there are any. | 
|  void | Renderer.encodeEnd(FacesContext context,
          UIComponent component) | 
|  Object | Renderer.getConvertedValue(FacesContext context,
                  UIComponent component,
                  Object submittedValue) | 
| Uses of UIComponent in javax.faces.validator | 
|---|
| Methods in javax.faces.validator with parameters of type UIComponent | |
|---|---|
|  void | LongRangeValidator.validate(FacesContext facesContext,
         UIComponent uiComponent,
         Object value) | 
|  void | DoubleRangeValidator.validate(FacesContext facesContext,
         UIComponent uiComponent,
         Object value) | 
|  void | Validator.validate(FacesContext context,
         UIComponent component,
         Object value) | 
|  void | LengthValidator.validate(FacesContext facesContext,
         UIComponent uiComponent,
         Object value) | 
| Uses of UIComponent in javax.faces.webapp | 
|---|
| Methods in javax.faces.webapp that return UIComponent | |
|---|---|
| protected  UIComponent | UIComponentTag.findComponent(FacesContext context)Return the corresponding UIComponent for this tag, creating it if necessary. | 
|  UIComponent | UIComponentTag.getComponentInstance()Return the UIComponent instance associated with this tag. | 
| Methods in javax.faces.webapp with parameters of type UIComponent | |
|---|---|
| protected  void | UIComponentTag.setProperties(UIComponent component) | 
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||