protected PluginQueryTokenizerPreferencesPanel _prefs = null;
private JScrollPane _myscrolledPanel;
private String _title = null;
private String _hint = null;
public PluginGlobalPreferencesTab(PluginQueryTokenizerPreferencesPanel prefsPanel) {
_myscrolledPanel = new JScrollPane(prefsPanel);
_prefs = prefsPanel;
}
public void initialize(IApplication app) {
}
public void uninitialize(IApplication app) {
}
public void applyChanges() {
if (_prefs != null) {
_prefs.applyChanges();
}
}
public String getTitle() {
return _title;
}
public void setTitle(String title) {
this._title = title;
}
public String getHint() {
return _hint;
}