01: package net.sourceforge.squirrel_sql.client.plugin;
02:
03: public class PluginStatus {
04: /** Identifies the plugin that this object refers to. */
05: private String _internalName;
06:
07: /** If tue plugin should be loaded at startup. */
08: private boolean _loadAtStartup = true;
09:
10: public PluginStatus() {
11: super ();
12: }
13:
14: public PluginStatus(String internalName) {
15: super ();
16: _internalName = internalName;
17: }
18:
19: /**
20: * Returns the name by which this plugin is uniquely identified.
21: *
22: * @return the name by which this plugin is uniquely identified.
23: */
24: public String getInternalName() {
25: return _internalName;
26: }
27:
28: public void setInternalName(String value) {
29: _internalName = value;
30: }
31:
32: public boolean isLoadAtStartup() {
33: return _loadAtStartup;
34: }
35:
36: public void setLoadAtStartup(boolean loadAtStartup) {
37: _loadAtStartup = loadAtStartup;
38: }
39: }
|