org.apache.pivot.wtk
Class FormListener.Adapter

java.lang.Object
  extended by org.apache.pivot.wtk.FormListener.Adapter
All Implemented Interfaces:
FormListener
Enclosing interface:
FormListener

public static class FormListener.Adapter
extends Object
implements FormListener

Form listener adapter.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.FormListener
FormListener.Adapter
 
Constructor Summary
FormListener.Adapter()
           
 
Method Summary
 void fieldInserted(Form.Section section, int index)
          Called when a form field has been inserted.
 void fieldsRemoved(Form.Section section, int index, Sequence<Component> fields)
          Called when forms fields items have been removed.
 void sectionHeadingChanged(Form.Section section)
          Called when a form section's heading has changed.
 void sectionInserted(Form form, int index)
          Called when a form section has been inserted.
 void sectionsRemoved(Form form, int index, Sequence<Form.Section> removed)
          Called when form sections have been removed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FormListener.Adapter

public FormListener.Adapter()
Method Detail

sectionInserted

public void sectionInserted(Form form,
                            int index)
Description copied from interface: FormListener
Called when a form section has been inserted.

Specified by:
sectionInserted in interface FormListener

sectionsRemoved

public void sectionsRemoved(Form form,
                            int index,
                            Sequence<Form.Section> removed)
Description copied from interface: FormListener
Called when form sections have been removed.

Specified by:
sectionsRemoved in interface FormListener

sectionHeadingChanged

public void sectionHeadingChanged(Form.Section section)
Description copied from interface: FormListener
Called when a form section's heading has changed.

Specified by:
sectionHeadingChanged in interface FormListener

fieldInserted

public void fieldInserted(Form.Section section,
                          int index)
Description copied from interface: FormListener
Called when a form field has been inserted.

Specified by:
fieldInserted in interface FormListener

fieldsRemoved

public void fieldsRemoved(Form.Section section,
                          int index,
                          Sequence<Component> fields)
Description copied from interface: FormListener
Called when forms fields items have been removed.

Specified by:
fieldsRemoved in interface FormListener