< prev index next >

src/java.desktop/share/classes/java/beans/beancontext/BeanContextMembershipEvent.java

Print this page




 113      * Gets the array of children affected by this event.
 114      * @return the array of children affected
 115      */
 116     public Object[] toArray() { return children.toArray(); }
 117 
 118     /**
 119      * Gets the array of children affected by this event.
 120      * @return the array of children effected
 121      */
 122     @SuppressWarnings("rawtypes")
 123     public Iterator iterator() { return children.iterator(); }
 124 
 125     /*
 126      * fields
 127      */
 128 
 129    /**
 130     * The list of children affected by this
 131     * event notification.
 132     */
 133     @SuppressWarnings("rawtypes")

 134     protected Collection children;
 135 }


 113      * Gets the array of children affected by this event.
 114      * @return the array of children affected
 115      */
 116     public Object[] toArray() { return children.toArray(); }
 117 
 118     /**
 119      * Gets the array of children affected by this event.
 120      * @return the array of children effected
 121      */
 122     @SuppressWarnings("rawtypes")
 123     public Iterator iterator() { return children.iterator(); }
 124 
 125     /*
 126      * fields
 127      */
 128 
 129    /**
 130     * The list of children affected by this
 131     * event notification.
 132     */
 133     @SuppressWarnings({"rawtypes",
 134                        "serial"}) // Not statically typed as Serializable
 135     protected Collection children;
 136 }
< prev index next >