| java.lang.Object edu.iu.uis.eden.engine.node.var.Property
Property | final public class Property (Code) | | Represents a property that can be accessed relative to a specific "scheme".
Property format: [scheme:]locator
- scheme
- The "scheme" of the property, which is implemented by a PropertyScheme implementation to
resolve the locator to an actual value
- locator
- PropertyScheme-implementation-specific property name or URI
author: ahamid |
locator | public String locator(Code) | | The property locator; in the case of a variable it is a name; in the case of a url, a url;
in the case of a file, a file path
|
scheme | public String scheme(Code) | | The property scheme (e.g. var:, url:, file:
|
Property | public Property(String string)(Code) | | Parses the scheme and locator from a property name/locator string
Parameters: string - the property name/locator |
Property | public Property(String scheme, String locator)(Code) | | Initialized the property with specified scheme and locator
Parameters: scheme - the scheme Parameters: locator - the locator |
|
|