Package | Description |
---|---|
org.kepler.configuration |
Modifier and Type | Field and Description |
---|---|
static ConfigurationNamespace |
ConfigurationProperty.namespaceDefault |
Modifier and Type | Method and Description |
---|---|
ConfigurationNamespace |
ConfigurationProperty.getNamespace()
return the namepace
|
Modifier and Type | Method and Description |
---|---|
void |
ConfigurationProperty.addProperty(org.kepler.build.modules.Module module,
java.lang.String name,
ConfigurationNamespace namespace,
ConfigurationProperty property)
add a new property for a given module with a given name that has the given
property nested within it.
|
boolean |
ConfigurationNamespace.equals(ConfigurationNamespace namespace)
return true if this namespace is equal to the parameterized namespace
|
java.util.List<ConfigurationProperty> |
ConfigurationManager.getProperties(org.kepler.build.modules.Module module,
ConfigurationNamespace namespace)
get a list of properties that belong to a certain module within a specific
namespace
|
java.util.List<ConfigurationProperty> |
ConfigurationManager.getProperties(org.kepler.build.modules.Module module,
ConfigurationNamespace namespace,
java.lang.String name)
get a list of properties that belong to a certain module with a specific
name within a namespace
|
ConfigurationProperty |
ConfigurationManager.getProperty(org.kepler.build.modules.Module module,
ConfigurationNamespace namespace)
return the root ConfigurationProperty of the namespace.
|
ConfigurationProperty |
ConfigurationManager.getProperty(org.kepler.build.modules.Module module,
ConfigurationNamespace namespace,
java.lang.String name)
return a single property from a module with a specific name in a specific
namespace.
|
void |
ConfigurationProperty.setNamespace(boolean notifyListeners,
ConfigurationNamespace namespace)
set the namespace of this property
|
void |
ConfigurationProperty.setNamespace(ConfigurationNamespace namespace)
set the namespace of this property
|
void |
ConfigurationProperty.setNamespace(ConfigurationNamespace namespace,
boolean recursive)
sets the namespace.
|
void |
ConfigurationProperty.setNamespace(ConfigurationNamespace namespace,
boolean recursive,
boolean notifyListeners)
sets the namespace.
|
static void |
ConfigurationProperty.setNamespace(ConfigurationProperty cp,
ConfigurationNamespace namespace,
boolean recursive)
set the namespace on a configurationProperty
|
static void |
ConfigurationProperty.setNamespace(ConfigurationProperty cp,
ConfigurationNamespace namespace,
boolean recursive,
boolean notifyListeners)
set the namespace on a configurationProperty
|
Constructor and Description |
---|
ConfigurationProperty(org.kepler.build.modules.Module module,
java.lang.String name,
ConfigurationNamespace namespace,
java.util.List<ConfigurationProperty> propertiesList)
constructor to build a configuration property for a module with a name,
namespace and a list of properties to nest within it
|
ConfigurationProperty(org.kepler.build.modules.Module module,
java.lang.String name,
ConfigurationNamespace namespace,
java.util.List<ConfigurationProperty> propertiesList,
boolean notifyListeners)
constructor to build a configuration property for a module with a name,
namespace and a list of properties to nest within it
|
ConfigurationProperty(org.kepler.build.modules.Module module,
java.lang.String name,
ConfigurationNamespace namespace,
java.lang.String value)
constructor to build a configuration property for a module with a name
and a single value
|
RootConfigurationProperty(org.kepler.build.modules.Module m,
java.lang.String name,
ConfigurationNamespace namespace) |
RootConfigurationProperty(org.kepler.build.modules.Module m,
java.lang.String name,
ConfigurationNamespace namespace,
ConfigurationProperty property) |