com.togethersoft.openapi.ide.config
Interface IdeModuleConfig
- All Known Implementing Classes:
- IdeNullModuleConfig
- public interface IdeModuleConfig
Represents the manager of config files which loads, unloads and performs other actions with these files.
To access the config files use IdeModuleConfigAccess.
- Author:
- TogetherSoft
- Since: Together 4.0
| Method Summary |
boolean | isFileLoaded(String file) Check whether the specified file is loaded. |
Enumeration | loadedFiles() Lists all loaded files. |
void | loadFile(String fileName) Instructs config subsystem to load specified config file. |
void | unloadFile(String fileName) Instructs config subsystem to unload specified config file. |
NULL
public final static IdeModuleConfig NULL
isFileLoaded
public boolean isFileLoaded(String file)
- Check whether the specified
file is loaded.- Parameters:
- file
String relative name of the config file
loadedFiles
public Enumeration loadedFiles()
- Lists all loaded files.
- Returns:
Enumeration of the loaded config files
loadFile
public void loadFile(String fileName)
- Instructs config subsystem to load specified config file.
- Parameters:
- fileName
String relative name of config file
unloadFile
public void unloadFile(String fileName)
- Instructs config subsystem to unload specified config file.
- Parameters:
- fileName
String relative name of config file
to Class com.togethersoft.openapi.ide.config.IdeModuleConfig