Constructor and Description |
---|
SearchQuery(ConfigurationProperty queryProp)
constructor
|
Modifier and Type | Class and Description |
---|---|
class |
RootConfigurationProperty
Class that represents a root configuration property within kepler
|
Modifier and Type | Method and Description |
---|---|
ConfigurationProperty |
ConfigurationProperty.getParent()
returns the parent propert of this property.
|
ConfigurationProperty |
ConfigurationEvent.getProperty()
get the property that caused this event
|
ConfigurationProperty |
ConfigurationProperty.getProperty(int index)
get the property with the given index in the current list of properties
|
ConfigurationProperty |
ConfigurationManager.getProperty(org.kepler.build.modules.Module module)
Returns the root property of the default configuration for a module.
|
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.
|
ConfigurationProperty |
ConfigurationManager.getProperty(org.kepler.build.modules.Module module,
java.lang.String name)
get a property from the module's default namespace configuration with
a given name
|
ConfigurationProperty |
ConfigurationProperty.getProperty(java.lang.String name)
if there are more than one property with the same name, just return
the first one.
|
ConfigurationProperty |
ConfigurationProperty.getProperty(java.lang.String name,
int index)
return a property with a given name at the specified index.
|
ConfigurationProperty |
RootConfigurationProperty.getRootProperty()
return the root property of this configuration
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<ConfigurationProperty> |
ConfigurationProperty.findProperties(ConfigurationProperty property,
java.lang.String name,
java.lang.String value,
boolean recursive)
return a list of properties that have a name that matches name and a value
that matches value within property.
|
static java.util.List<ConfigurationProperty> |
ConfigurationProperty.findProperties(java.util.List<ConfigurationProperty> properties,
java.lang.String name,
java.lang.String value,
boolean recursive)
Search a list of properties for properties that contain a name and a value
|
java.util.List<ConfigurationProperty> |
ConfigurationProperty.findProperties(java.lang.String name,
java.lang.String value)
returns a list of properties within this property that have a specific
name and value.
|
java.util.List<ConfigurationProperty> |
ConfigurationProperty.findProperties(java.lang.String name,
java.lang.String value,
boolean recursive)
returns a list of properties within this property that have a specific
name and value.
|
java.util.List<ConfigurationProperty> |
ConfigurationManager.getProperties()
return all properties handled by the manager
|
java.util.List<ConfigurationProperty> |
ConfigurationProperty.getProperties()
return a list of nested properties within this property
|
static java.util.List<ConfigurationProperty> |
ConfigurationProperty.getProperties(ConfigurationProperty cp,
java.lang.String name,
boolean recursive)
get properties from a configurationProperty with a given name.
|
java.util.List<ConfigurationProperty> |
ConfigurationManager.getProperties(org.kepler.build.modules.Module module)
get a list of properties that belong to a module
|
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
|
java.util.List<ConfigurationProperty> |
ConfigurationManager.getProperties(org.kepler.build.modules.Module module,
java.lang.String name)
get a list of properties that belong to a certain module with a specific
name.
|
java.util.List<ConfigurationProperty> |
ConfigurationProperty.getProperties(java.lang.String name)
return a list of nested properties that have a specific name.
|
java.util.List<ConfigurationProperty> |
ConfigurationProperty.getProperties(java.lang.String name,
boolean recursive)
do a recursive get through this ConfigurationProperty
|
protected static java.util.List<ConfigurationProperty> |
ConfigurationProperty.getPropertiesWithPath(ConfigurationProperty property,
java.lang.String[] s,
boolean returnChildren)
recursively return all properties with a path denoted in s.
|
Modifier and Type | Method and Description |
---|---|
void |
ConfigurationProperty.addProperty(ConfigurationProperty property)
add a nested property to this configuration property
|
void |
ConfigurationProperty.addProperty(ConfigurationProperty property,
boolean notifyListeners)
add a nested property to this configuration property
|
protected void |
ConfigurationProperty.addProperty(ConfigurationProperty property,
boolean ignoreMutable,
boolean notifyListeners,
boolean setDirty)
add a nested property to this configuration property.
|
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.
|
void |
ConfigurationProperty.addProperty(org.kepler.build.modules.Module module,
java.lang.String name,
ConfigurationProperty property)
add a new property for a given module with a given name that has the given
property nested within it.
|
void |
ConfigurationProperty.addPropertyAtIndex(int index,
ConfigurationProperty propertyToAdd)
add propertyToAdd before the beforeProperty in the ordering of the list of
properties for this property
|
void |
ConfigurationProperty.addPropertyIfNotThere(ConfigurationProperty propertyToAdd)
add a nested property if the contents are not already present,
ignoring: namespaces, modules, originmodules.
|
void |
ConfigurationProperty.addPropertyIfNotThere(ConfigurationProperty propertyToAdd,
boolean setDirty) |
void |
ConfigurationProperty.addPropertyIfNotThereAtIndex(int index,
ConfigurationProperty propertyToAdd)
add a nested property at index if the contents are not already present,
ignoring: namespaces, modules, originmodules.
|
boolean |
ConfigurationProperty.containsProperty(ConfigurationProperty nestedProperty)
returns true if this property contains a nested property,
ignoring: namespaces, modules, originmodules.
|
boolean |
ConfigurationProperty.equalsContents(ConfigurationProperty property)
returns true if the property contents are identical to this one,
ignoring: namespaces, modules, originmodules.
|
static java.util.List<ConfigurationProperty> |
ConfigurationProperty.findProperties(ConfigurationProperty property,
java.lang.String name,
java.lang.String value,
boolean recursive)
return a list of properties that have a name that matches name and a value
that matches value within property.
|
static java.util.Map<java.lang.String,java.util.List<java.lang.String>> |
ConfigurationUtilities.getMultiValuePairsMap(ConfigurationProperty property)
Get a map of name value pairs in the property where each key can have multiple values.
|
static java.util.Map<java.lang.String,java.lang.String> |
ConfigurationUtilities.getPairsMap(ConfigurationProperty property)
Return a map from a list of name value pairs contained in a property.
|
static java.util.Map<java.lang.String,java.lang.String> |
ConfigurationUtilities.getPairsMap(ConfigurationProperty property,
boolean recurse)
Return a map of name value pairs contained in a property.
|
static java.util.List<ConfigurationProperty> |
ConfigurationProperty.getProperties(ConfigurationProperty cp,
java.lang.String name,
boolean recursive)
get properties from a configurationProperty with a given name.
|
protected static java.util.List<ConfigurationProperty> |
ConfigurationProperty.getPropertiesWithPath(ConfigurationProperty property,
java.lang.String[] s,
boolean returnChildren)
recursively return all properties with a path denoted in s.
|
protected void |
ConfigurationManager.notifyListeners(ConfigurationProperty property)
notify any listeners that a configuration event has occured
|
boolean |
ConfigurationProperty.overrideProperty(ConfigurationProperty originalProperty,
ConfigurationProperty newProperty,
boolean overrideNamespace)
override originalProperty with newProperty.
|
boolean |
ConfigurationProperty.removeProperty(ConfigurationProperty propertyToRemove)
remove the given property
|
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
|
void |
ConfigurationProperty.setParent(ConfigurationProperty property)
set the parent property of this property
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<ConfigurationProperty> |
ConfigurationProperty.findProperties(java.util.List<ConfigurationProperty> properties,
java.lang.String name,
java.lang.String value,
boolean recursive)
Search a list of properties for properties that contain a name and a value
|
static java.util.List<java.lang.String> |
ConfigurationProperty.getValueList(java.util.List<ConfigurationProperty> propList,
java.lang.String propertyName,
boolean recursive)
return a list of strings of the values of a property with a given name in
the list of properties
|
static void |
ConfigurationProperty.prettyPrintList(java.util.List<ConfigurationProperty> l)
pretty print a list of configuration properties
|
static void |
ConfigurationProperty.simplePrintList(java.util.List<ConfigurationProperty> l) |
Constructor and Description |
---|
ConfigurationEvent(ConfigurationProperty property) |
ConfigurationProperty(org.kepler.build.modules.Module module,
java.lang.String name,
ConfigurationProperty property)
create a configuration property with one nested property
|
RootConfigurationProperty(org.kepler.build.modules.Module m,
java.lang.String name,
ConfigurationNamespace namespace,
ConfigurationProperty property) |
RootConfigurationProperty(org.kepler.build.modules.Module m,
java.lang.String name,
ConfigurationProperty property) |
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,
java.util.List<ConfigurationProperty> propertiesList)
constructor to build a configuration property for a module with a name and
a list of properties to load
|
Modifier and Type | Method and Description |
---|---|
static ConfigurationProperty |
Utilities.getEngineProperty(java.lang.String engineName,
Nameable source)
Get the ConfigurationProperty for an Engine on the configuration file.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.List<ConfigurationProperty> |
AtomicPatternActor._formatProperties
A list of properties of format types from the config file.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AtomicPatternActor._setTypesFromConfiguration(ConfigurationProperty formatProperty)
Set the key and value types from the types in the configuration property.
|
protected void |
DDPDataSink._setTypesFromConfiguration(ConfigurationProperty formatProperty)
Set the key and value types from the types in the configuration property.
|
protected void |
DDPDataSource._setTypesFromConfiguration(ConfigurationProperty formatProperty)
Set the key and value types from the types in the configuration property.
|
Modifier and Type | Method and Description |
---|---|
static ConfigurationProperty |
KARFile.getKARVersionsConfigProperty() |
Modifier and Type | Method and Description |
---|---|
static ConfigurationProperty |
Initialize.getCurrentModuleProperty()
Gets the property of the current module (Sensor-view).
|
Constructor and Description |
---|
ProvenanceRecorder(ConfigurationProperty configProperty)
Construct a provenance recorder in the default workspace using
non-default ConfigurationProperty.
|
Modifier and Type | Method and Description |
---|---|
static ConfigurationProperty |
StaticResources.getDisplayTextProperty()
Search for the ResourceBundle containing the UI Display Text.
|
ConfigurationProperty |
ProvenanceStore.getProvenanceConfigurationProperty() |
static ConfigurationProperty |
StaticResources.getUISettingsProperty()
Search for the ResourceBundle containing the ui settings.
|
static ConfigurationProperty |
StaticResources.getUiSVGIconMappingsByClass()
get the configuration property for the svg icon class mappings
|
static ConfigurationProperty |
StaticResources.getUiSVGIconMappingsByLSID()
get the configuraiton property for the svg icon lsid mappings
|
Modifier and Type | Method and Description |
---|---|
protected static int |
StaticResources._getInt(java.lang.String propertyKey,
ConfigurationProperty property)
Get the integer (int) property denoted by the propertyKey.
|
protected static java.lang.String |
StaticResources._getString(java.lang.String propertyKey,
ConfigurationProperty property)
Get the String property denoted by the propertyKey.
|
static java.lang.String |
StaticResources.getValueFromName(ConfigurationProperty prop,
java.lang.String name)
get the value of a property based on the name
|
Constructor and Description |
---|
ProvenanceStore(ConfigurationProperty configProp) |
ProvenanceStore(ConfigurationProperty configProp,
EcogridRepository ecoRepo) |
Modifier and Type | Method and Description |
---|---|
static DatabaseType |
DatabaseFactory.getConnectedDatabaseType(ConfigurationProperty dbProperty)
Connect to a database from a ConfigurationProperty.
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<ConfigurationProperty> |
WebViewConfiguration.getAppProperties(java.lang.String appName,
java.lang.String confName)
Get config properties for an app.
|
Modifier and Type | Field and Description |
---|---|
static ConfigurationProperty |
WRMDefaults.provenanceDefaultsProperty |