| |
|
| java.lang.Object net.infonode.properties.util.PropertyPath
PropertyPath | public class PropertyPath (Code) | | A path to a property.
author: $Author: jesper $ version: $Revision: 1.3 $ |
PropertyPath | public PropertyPath(Property property)(Code) | | Creates a path containing a single property.
Parameters: property - the property |
PropertyPath | public PropertyPath(Property property, PropertyPath tail)(Code) | | Creates a path by prepending a path with a property.
Parameters: property - the property to prepend Parameters: tail - the path to prepend to |
copy | public PropertyPath copy()(Code) | | Creates a new path that is a copy of this path.
The properties are not copied.
a copy of this path |
getProperty | public Property getProperty()(Code) | | Returns the first property in this path.
the first property in the path |
getTail | public PropertyPath getTail()(Code) | | Returns the path after the first property.
the path after the first property |
|
|
|