1 23 package com.sun.enterprise.tools.admingui.tree; 24 25 import com.sun.enterprise.tools.jsfext.event.EventObjectBase; 26 import com.sun.enterprise.tools.jsfext.event.UIComponentHolder; 27 28 import java.util.EventObject ; 29 30 import javax.faces.component.UIComponent; 31 32 33 37 public class FilterTreeEvent extends EventObjectBase implements UIComponentHolder { 38 39 45 public FilterTreeEvent(UIComponent component, Object [] childObjects) { 46 super(component); 47 setChildObjects(childObjects); 48 } 49 50 57 public Object [] getChildObjects() { 58 return _childObjects; 59 } 60 61 69 protected void setChildObjects(Object [] objects) { 70 _childObjects = objects; 71 } 72 73 76 public static final String EVENT_TYPE = "filterTree"; 77 78 private Object [] _childObjects = null; 79 } 80 | Popular Tags |