java.lang.Object |
↳ |
com.microstrategy.utils.DAG.AnnotatableObject |
Known Direct Subclasses
DAG.Edge |
This class represents an Edge in the Directed Acyclic Graph. |
DAG.Vertex |
This class represents an end point ("vertex") in a Directed
Acyclic Graph. |
|
Class Overview
This is a simple object which can be "annotated" with
caller-specified properties. Classes which are "annotatable" include:
Summary
Public Methods |
Object
|
getProperty(String propName)
Get a caller-specified property.
|
void
|
setProperty(String propName, Object data)
Sets a caller-specified property.
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public Constructors
public
AnnotatableObject
()
Public Methods
public
Object
getProperty
(String propName)
Get a caller-specified property.
Parameters
propName |
The name of the property. |
Returns
- The value of the property.
public
void
setProperty
(String propName, Object data)
Sets a caller-specified property.
Parameters
propName |
The name of the property. |
data |
The value of the property.
|