Class FormChangeEvent
- java.lang.Object
-
- java.util.EventObject
-
- net.sf.jguiraffe.gui.builder.event.BuilderEvent
-
- net.sf.jguiraffe.gui.builder.event.FormEvent
-
- net.sf.jguiraffe.gui.builder.event.FormChangeEvent
-
- All Implemented Interfaces:
Serializable
public class FormChangeEvent extends FormEvent
A specific event class for change events.
Change events are caused by components that react on changes by the user, e.g. a text field in which text was typed or a combo or list box from which an item was selected. Because a wide variety of source events and components are possible there is no default set of properties to describe the change. But by using the provided component handler it should be possible to access the new value of the affected component.
- Version:
- $Id: FormChangeEvent.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description FormChangeEvent(Object source, ComponentHandler<?> handler, String name)
Creates a new instance ofFormChangeEvent
and initializes it.
-
Method Summary
-
Methods inherited from class net.sf.jguiraffe.gui.builder.event.FormEvent
equals, getHandler, getName, hashCode
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
FormChangeEvent
public FormChangeEvent(Object source, ComponentHandler<?> handler, String name)
Creates a new instance ofFormChangeEvent
and initializes it.- Parameters:
source
- the source eventhandler
- the component handlername
- the component's name
-
-