Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.virtuosotechnologies.asaph.maingui
Interface PrefsPaneProvider  view PrefsPaneProvider download PrefsPaneProvider.java

All Known Implementing Classes:
MainGuiPrefsPane

public interface PrefsPaneProvider

This interface should be implemented to implement a prefs pane.


Method Summary
 javax.swing.JComponent createPane(javax.swing.JComponent dialogParent)
          This method is called when the prefs window is opened.
 void paneDisposed()
          This method is called when the prefs window is closed.
 void paneFocused()
          This method is called when the pane is brought into focus.
 void paneUnfocused()
          This method is called when the pane is unfocused.
 

Method Detail

createPane

public javax.swing.JComponent createPane(javax.swing.JComponent dialogParent)
This method is called when the prefs window is opened. The provider should return a JComponent implementing the prefs pane, and ensure that it reflects the current settings.


paneFocused

public void paneFocused()
This method is called when the pane is brought into focus.


paneUnfocused

public void paneUnfocused()
This method is called when the pane is unfocused.


paneDisposed

public void paneDisposed()
This method is called when the prefs window is closed. The provider should generally respond by defuncting the pane.