Uses of Class
net.sf.jguiraffe.gui.builder.event.FormListenerType
-
Packages that use FormListenerType Package Description net.sf.jguiraffe.gui.builder.action.tags Here the tags for creating actions and related objects are defined.net.sf.jguiraffe.gui.builder.event The main package for events and event listeners definitions. -
-
Uses of FormListenerType in net.sf.jguiraffe.gui.builder.action.tags
Methods in net.sf.jguiraffe.gui.builder.action.tags with parameters of type FormListenerType Modifier and Type Method Description void
EventListenerTag. addListenerType(FormListenerType lt)
Adds another listener type in form of aFormListenerType
object.Constructors in net.sf.jguiraffe.gui.builder.action.tags with parameters of type FormListenerType Constructor Description FormEventListenerTag(FormListenerType type)
Creates a new instance ofFormEventListenerTag
and sets the event listener type. -
Uses of FormListenerType in net.sf.jguiraffe.gui.builder.event
Methods in net.sf.jguiraffe.gui.builder.event that return FormListenerType Modifier and Type Method Description static FormListenerType
FormListenerType. fromString(String s)
Tries to find aFormListenerType
constant that matches the passed in string.static FormListenerType
FormListenerType. valueOf(String name)
Returns the enum constant of this type with the specified name.static FormListenerType[]
FormListenerType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.sf.jguiraffe.gui.builder.event with parameters of type FormListenerType Modifier and Type Method Description protected void
FormEventManager. addListener(FormListenerType type, String name, FormEventListener l)
Performs the actual adding of an event listener.void
FormEventManager. fireEvent(FormEvent event, FormListenerType type)
Sends the specified event to all registered listeners.void
PlatformEventManager. registerListener(String name, ComponentHandler<?> handler, FormEventManager eventManager, FormListenerType type)
Registers an event listener of the given type at the specified component.protected boolean
FormEventManager. removeListener(FormListenerType type, String name, FormEventListener l)
Performs the actual removal of an event listener.void
PlatformEventManager. unregisterListener(String name, ComponentHandler<?> handler, FormEventManager eventManager, FormListenerType type)
Removes an event listener of the given type from the specified component.
-