Table of Contents
An interface to hold configuration data for a certain runtime context.
public interface UIConfig {public MainView getMainView();
public MainModel getMainModel();
public MetaDataManagerFactory getMetaDataManagerFactory();
public MetaDataManager getMetaDataManager(MetaScheme scheme)
throws IOException;public Sequence getMetaSchemeTableModels();
public String getResource(String key);
public DataManager getDataManager(DataScheme scheme)
throws IOException;public String getOption(String key);
}
Inheritance Path. org.kaiwitte.workbench.ui.UIConfig
Synopsis: public DataManager getDataManager(org.kaiwitte.workbench.data.Dat\ aScheme scheme) throws java.io.IOException;
Parameters
the DataManager
to access data
Returns the DataManager
to be used by all
components.
Synopsis: public MainModel getMainModel();
Parameters
the main model of the application
Returns the main model of the application.
Synopsis: public MainView getMainView();
Parameters
the main view of the application
Returns the main view of the application.
Synopsis: public MetaDataManager getMetaDataManager(org.kaiwitte.workbench.\ data.MetaScheme scheme) throws java.io.IOException;
Parameters
the MetaDataManager
to access data
Returns the MetaDataManager
to be used by all
components.
Synopsis: public Sequence getMetaSchemeTableModels();
Parameters
the MetaDataManager
to access data
Returns the MetaDataManager
to be used by all
components.