| |
|
| java.lang.Object org.andromda.core.configuration.Namespace
Namespace | public class Namespace implements Serializable(Code) | | A configurable namespace object. These are passed to Plugin instances (Cartridges, etc.).
author: Chad Brandon |
addProperty | public void addProperty(Property property)(Code) | | Adds a property to this Namespace object. A property must correspond to a java bean property name on a Plugin in
order for it to be set during processing. Otherwise the property will just be ignored.
Parameters: property - the property to add to this namespace. |
getName | public String getName()(Code) | | Returns name of this Namespace. Will correspond to a Plugin name (or it can be be 'default' if we want it's
settings to be used everywhere).
String |
getProperties | public Collection getProperties()(Code) | | Gets all namespaces belonging to this namespaces instance.
all namespaces. |
getProperty | public Property getProperty(String name)(Code) | | Retrieves the property with the specified name.
Parameters: name - the name of the property. the property |
setName | public void setName(String name)(Code) | | Sets the name of this Namespace.
Parameters: name - The name to set |
|
|
|