| org.andromda.core.namespace.NamespaceComponent
All known Subclasses: org.andromda.core.namespace.BaseNamespaceComponent,
NamespaceComponent | public interface NamespaceComponent (Code) | | This represents a component that can be discovered/registered within a namespace.
author: Chad Brandon |
Method Summary | |
public String | getNamespace() Gets the namespace to which this component belongs. | public URL | getResource() The entire path to the resource this namespace component instance
is configured from. | public void | setNamespace(String namespace) Sets the namespace to which this component belongs. | public void | setResource(URL resource) Sets the path of the resource from which this namespace component is configured. |
getNamespace | public String getNamespace()(Code) | | Gets the namespace to which this component belongs.
the name of the namespace. |
getResource | public URL getResource()(Code) | | The entire path to the resource this namespace component instance
is configured from.
URL the path to the resource from which this namespacecomponent was configured. |
setNamespace | public void setNamespace(String namespace)(Code) | | Sets the namespace to which this component belongs.
Parameters: namespace - the name of the namespace to which this component belongs. |
setResource | public void setResource(URL resource)(Code) | | Sets the path of the resource from which this namespace component is configured.
Parameters: resource - the resource URL. |
|
|