| Home >> All >> org >> apache >> myfaces >> custom |
Page 1 2 3 4 5
Package Samples:
org.apache.myfaces.custom.aliasbean
org.apache.myfaces.custom.buffer
org.apache.myfaces.custom.calendar
org.apache.myfaces.custom.checkbox
org.apache.myfaces.custom.collapsiblepanel
org.apache.myfaces.custom.creditcardvalidator
org.apache.myfaces.custom.column
org.apache.myfaces.custom.ajax.api
org.apache.myfaces.custom.autoupdatedatatable
org.apache.myfaces.custom.convertboolean
Classes:
BooleanConverter: Converter that translates between boolean values (true/false) and alternate versions of those boolean values like (yes/no), (1/0), and (way/no way). To customize the representation of a boolean true and false, use setTrueValue(String) 55 and setFalseValue(String) 55 respectively. If not configured with these setter methods, it defaults to true and false . The values are case sensitive.
UITreeData: TreeData is a javax.faces.component.UIComponent that supports binding data stored in a tree represented by a TreeNode instance. During iterative processing over the tree nodes in the data model, the object for the current node is exposed as a request attribute under the key specified by the var property. javax.faces.render.Renderer s of this component should use the appropriate facet to assist in rendering.
HtmlTree: Tree implementation based on javax.swing.JTree. The tree model is assigned by using a value binding named model and is not stored in view state. A hierarchy of HtmlTreeNode objects is used to represent the current expanded state of the tree. The root node is held as a faces named rootNode .
AliasBean: The aliasBean tag allows you to link a fictive bean to a real bean. Let's suppose you have a subform you use often but with different beans. The aliasBean allows you to design the subform with a fictive bean and to include it in all the pages where you use it. You just need to make an alias to the real bean named after the fictive bean before invoking the fictive bean. This making it possible to have a library of reusable generic subforms.
ConvertBooleanTag: A tag that invokes the BooleanConverter and lets the developer specify the desired values for a boolean true or false. Example:
HtmlPanelStack: Manage a stack of JSF components and allow for one child component to be choosen for rendering. The behaviour is similar to the CardLayout of Java Swing. Property selectedPanel defines the id of the child to be rendered. If no child panel is selected or if the selected panel can not be found the first child is rendered.
TreeNode: Defines the requirements for an object that can be used as a tree node for use in a UITreeData component. (inspired by javax.swing.tree.TreeNode).
TreeModel: Model class for the tree component. It provides random access to nodes in a tree made up of instances of the TreeNode class.
TreeModelBase: Model class for the tree component. It provides random access to nodes in a tree made up of instances of the TreeNode class.
TreeNode: Defines the requirements for an object that can be used as a tree node for HtmlTree . (inspired by javax.swing.tree.TreeNode).
HtmlPanelNavigation: Panel, that includes navigation items ( HtmlCommandNavigation ) and other components (separators).
MutableTreeNode: Defines the requirements for a tree node object that can change -- by adding or removing child nodes, or by changing the contents of a user object stored in the node. (inspired by javax.swing.tree.MutableTreeNode).
PlannerEntity: A Planner entity is a person, room, piece of equipment, ... that is displayed as a row in the planner component. TODO this should be an interface, with a DefaultPlannerEntity implementation
TabChangeListenerTag: Tag to add a tab change listeners to a HtmlPanelTabbedPane
ScheduleModel: The underlying model of the UISchedule component. You should implement this interface when creating real implementations, which would typically be backed by a database.
DefaultMutableTreeNode: Default implementation of MutableTreeNode .
ScheduleDelegatingRenderer: Renderer for the Schedule component that delegates the actual rendering to a compact or detailed renderer, depending on the mode of the ScheduleModel
HtmlTreeNode: Represents a single node of a three. A custom html link component representing the expand/collapse icon is held as a facet named expandCollapse .
HtmlTreeColumn: Tree column model. This column is used to provide the place holder for the tree. This is used in conjunction with the table format display.
TreeSelectionListenerTag: Tag to add a tree selection listeners to a org.apache.myfaces.custom.tree.HtmlTree
TreeSelectionEvent: Event fired by org.apache.myfaces.custom.tree.HtmlTree on selection changes.
UISaveState: This component defines a model value (via the "value" attribute), of which the state has to be saved and restored by the StateRenderer.
HtmlTree: Represents "tree data" in an HTML format. Also provides a mechanism for maintaining expand/collapse state of the nodes in the tree.
SimpleScheduleModel: A simple implementation of the ScheduleModel, not backed by any kind of datasource: entries have to be added manually.
| Home | Contact Us | Privacy Policy | Terms of Service |