Package diva.util
Interface SemanticObjectContainer
-
- All Known Subinterfaces:
CompositeNode
,Edge
,Graph
,Node
public interface SemanticObjectContainer
An object which is annotated with a single "semantic object" which is its semantic equivalent in an application.- Version:
- $Id$
- Author:
- Michael Shilman
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
getSemanticObject()
Return the semantic object.void
setSemanticObject(java.lang.Object o)
Set the semantic object.
-
-
-
Method Detail
-
getSemanticObject
java.lang.Object getSemanticObject()
Return the semantic object.- Returns:
- The semantic object
- See Also:
setSemanticObject(Object)
-
setSemanticObject
void setSemanticObject(java.lang.Object o)
Set the semantic object.- Parameters:
o
- The semantic object- See Also:
getSemanticObject()
-
-