Interface ChangeListener
-
- All Superinterfaces:
EventListener
public interface ChangeListener extends EventListener
Definition of an interface for receiving notifactions about changes at Swing components.
The purpose of this interface is to combine different event listener interfaces existing in Swing dealing with component changes. The form builder library treates all these events the same way so they can be all processed through this interface.
- Version:
- $Id: ChangeListener.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
componentChanged(Object event)
Call back method for component changes.
-
-
-
Method Detail
-
componentChanged
void componentChanged(Object event)
Call back method for component changes. Analogous to the
class there is only a single method in this interface that is invoked for all type of component changes.FormChangeListener
- Parameters:
event
- the original event object
-
-