| |
|
| java.lang.Object org.andromda.core.configuration.Repository
Repository | public class Repository implements Serializable(Code) | | Stores the repository information for each model that AndroMDA will process.
author: Chad Brandon |
Method Summary | |
public void | addModel(Model model) Adds a model that this repository will load. | public Model[] | getModels() Gets the model instances belonging to this repository. | public String | getName() Gets the unique name of this repository. | public void | setName(String name) Sets the unique (among other repositories)
name. |
addModel | public void addModel(Model model)(Code) | | Adds a model that this repository will load.
Parameters: model - the model to load. |
getModels | public Model[] getModels()(Code) | | Gets the model instances belonging to this repository.
the of model instances. |
getName | public String getName()(Code) | | Gets the unique name of this repository.
the repository name. |
setName | public void setName(String name)(Code) | | Sets the unique (among other repositories)
name.
Parameters: name - the unique name of this repository. |
|
|
|