| java.lang.Object org.netbeans.modules.visualweb.insync.beans.BeansNode org.netbeans.modules.visualweb.insync.beans.EventSet
All known Subclasses: org.netbeans.modules.visualweb.insync.faces.MethodBindEventSet,
EventSet | public class EventSet extends BeansNode (Code) | | Representation of a wiring for a single event listener, which maps to a single add*Listener
statement in the init block. Will contain one or more Events that route the specific events to
the handler methods
|
EventSet | protected EventSet(Bean bean, EventSetDescriptor descriptor)(Code) | | Partially construct an EventSet to be fully populated later
Parameters: beansUnit - Parameters: bean - Parameters: name - |
EventSet | EventSet(Bean bean, EventSetDescriptor descriptor, boolean unused)(Code) | | Construct a new EventSet, creating the underlying statement methods
Parameters: bean - Parameters: name - |
bindEvents | protected void bindEvents()(Code) | | Scan our descriptor's methods and create individual events that match
|
getAdapter | public JavaClass getAdapter()(Code) | | Get this EventSet's working adapter class
|
getAdapterType | protected Class getAdapterType()(Code) | | Get this EventSet's event adapter type, if one exists
|
getAddListenerMethodName | public String getAddListenerMethodName()(Code) | | |
getListenerType | public Class getListenerType()(Code) | | Get this EventSet's event listener interface type
|
getName | public String getName()(Code) | | Get the name of this EventSet
|
insertEntry | public void insertEntry()(Code) | | Insert the stub source entry for this EventSet
|
isInserted | public boolean isInserted()(Code) | | |
newBoundInstance | static EventSet newBoundInstance(BeansUnit unit, Statement stmt)(Code) | | Create a EventSet setting bound to a specific statement of the form:
bean.addXyzListener(new XyzAdapter() {
...events...
});
Parameters: unit - Parameters: s - the new bound event set if bindable, else null |
releaseEntry | protected void releaseEntry()(Code) | | Release this EventSet's hold on the underlying source. Use when another object will take over.
Clear child event list, etc. This eventSet instance is dead & should not be used.
|
removeDelegatorMethod | protected void removeDelegatorMethod(Method delegator)(Code) | | |
removeEntry | public boolean removeEntry()(Code) | | Clear child event list, and remove this eventSet's statement from the init method. Removing
this statement will take out all the event's entries, so they don't have to be explicitly
removed. This eventSet instance is dead & should not be used.
true iff the source entry for this event was actually removed. |
setInserted | public void setInserted(boolean inserted)(Code) | | |
|
|