| java.lang.Object org.andromda.andromdapp.Mapping
Mapping | public class Mapping (Code) | | Represents a mapping within an AndroMDApp descriptor.
author: Chad Brandon |
Method Summary | |
public void | addFrom(String from) Adds a from to this mapping's list of from mappings. | public String | getMatch(String path) Attempts to match the given path on one of the
the from values, if a match can be made, the new path value is returned,
otherwise null is returned. | public String | getTo() | public void | setTo(String to) |
addFrom | public void addFrom(String from)(Code) | | Adds a from to this mapping's list of from mappings.
Parameters: from - the from mapping. |
getMatch | public String getMatch(String path)(Code) | | Attempts to match the given path on one of the
the from values, if a match can be made, the new path value is returned,
otherwise null is returned.
true/false |
setTo | public void setTo(String to)(Code) | | Parameters: to - The to to set. |
|
|