Class FilterTreeEvent
java.lang.Object
java.util.EventObject
com.sun.jsftemplating.layout.event.EventObjectBase
org.glassfish.admingui.common.tree.FilterTreeEvent
- All Implemented Interfaces:
com.sun.jsftemplating.layout.event.UIComponentHolder,Serializable
public class FilterTreeEvent
extends com.sun.jsftemplating.layout.event.EventObjectBase
- Author:
- Ken Paulsen (ken.paulsen@sun.com)
- See Also:
-
Field Summary
FieldsFields inherited from class java.util.EventObject
source -
Constructor Summary
ConstructorsConstructorDescriptionFilterTreeEvent(jakarta.faces.component.UIComponent component, List childObjects) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionThis method provides access to an array of Objects that are to become childTreeNodes.protected voidsetChildObjects(List objects) This method is protected because it is only meaningful to set this array during the creation of this event.Methods inherited from class com.sun.jsftemplating.layout.event.EventObjectBase
getUIComponentMethods inherited from class java.util.EventObject
getSource, toString
-
Field Details
-
EVENT_TYPE
The "filterTree" event type. ("filterTree")
- See Also:
-
-
Constructor Details
-
FilterTreeEvent
Constructor.
- Parameters:
component- TheUIComponentassociated with thisEventObject.
-
-
Method Details
-
getChildObjects
This method provides access to an array of Objects that are to become child
TreeNodes. This allows you to manipluate them (filter them) before they are processed. You may return a new List from your handler that processes this event. Note that you NOT set the child object array using this event. -
setChildObjects
This method is protected because it is only meaningful to set this array during the creation of this event. Setting it any other time would not effect the original data structure and would serve no purpose. To provide a different object array, return a new
Object[]from your handler that processes this event.
-