Methods Summary |
---|
public void | addConfigProperty(EnvironmentProperty configProperty)Add a configProperty to the set
this.configProperties.add(configProperty);
this.setDirty();
this.changed();
|
public void | changed()
super.changed();
|
public java.lang.String | getAdminObjectClass()
return this.theClass;
|
public java.lang.String | getAdminObjectInterface()
return this.theInterface;
|
public java.util.Set | getConfigProperties()Set of EnvironmentProperty
return configProperties;
|
public boolean | isDirty()
return this.isDirty;
|
public void | removeConfigProperty(EnvironmentProperty configProperty)Add a configProperty to the set
this.configProperties.remove(configProperty);
this.setDirty();
this.changed();
|
public void | setAdminObjectClass(java.lang.String cl)
this.theClass = cl;
|
public void | setAdminObjectInterface(java.lang.String intf)
this.theInterface = intf;
|
private void | setDirty()
this.isDirty = true;
|