| |
|
| java.lang.Object org.obe.xpdl.model.data.ExternalReference
ExternalReference | final public class ExternalReference implements Type,Serializable(Code) | | Reference to an external entity as defined in XPDL 1.0b1.
author: Adrian Price |
ExternalReference | public ExternalReference()(Code) | | |
ExternalReference | public ExternalReference(String location)(Code) | | Construct a new ExternalReference.
Parameters: location - The location |
ExternalReference | public ExternalReference(String location, String xref, String namespace)(Code) | | Construct a new ExternalReference.
Parameters: location - The location Parameters: xref - Parameters: namespace - |
getLocation | public String getLocation()(Code) | | Get the location URI.
The location URI |
getNamespace | public String getNamespace()(Code) | | Get the namespace of the external reference. The value is optional and
this method may return null.
The namespace |
getXref | public String getXref()(Code) | | Get the identity of the entity in the external reference. This value is
optional and this method may return null.
The entity identity |
hashCode | public int hashCode()(Code) | | |
isAssignableFrom | public boolean isAssignableFrom(Type fromType)(Code) | | |
setLocation | public void setLocation(String location)(Code) | | Set the location URI.
Parameters: location - The new location URI |
setNamespace | public void setNamespace(String namespace)(Code) | | Set the namespace of the external reference. This value is optional and
can be set to null.
Parameters: namespace - The namespace |
setXref | public void setXref(String xref)(Code) | | Set the identity of the entity in the external reference. This value is
optional and can be set to null.
Parameters: xref - The entity identity |
|
|
|