org.eodisp.ui.common.base
Interface ConfigPanel

All Known Implementing Classes:
AbstractConfigPanel, JxtaConfig, MmAppConfig, RemoteConf, RmAppConfig, SmAppConfig

public interface ConfigPanel

This interface should be implemented by all panels that are used to configura an application. These panels will be shown in an settings dialog.

Version:
$Id:$
Author:
eglimi

Method Summary
 EodispModel getModel()
          Returns the model for the config panel.
 javax.swing.JPanel getPanel()
          Returns the complete panel.
 void setModel(EodispModel model)
          Sets the model for the config panel.
 

Method Detail

getPanel

javax.swing.JPanel getPanel()
Returns the complete panel. Note that the panel should not be added to a JScrollPane, since this will be done in the showing component (i.e. the settings dialog).


setModel

void setModel(EodispModel model)
Sets the model for the config panel. The model is a ordinary EodispModel

Parameters:
model - The model for the config panel

getModel

EodispModel getModel()
Returns the model for the config panel.

Returns:
The model for the config panel.