edu.ksu.cis.projects.bogor.module.value
Interface IExpASTValue

All Superinterfaces:
Comparable<IValue>, Disposable, INonPrimitiveValue, IValue, Serializable
All Known Implementing Classes:
DefaultExpASTValue

public interface IExpASTValue
extends INonPrimitiveValue

Represents an exp AST value.

Version:
CVS $Revision: 1.3 $ $Date: 2005/06/06 19:15:31 $
Author:
Robby

Method Summary
 IExpASTValue clone(Map<Object,Object> cloneMap)
          Override to specialize return type
 Exp getExp()
          Gets the exp AST of this exp AST value.
 
Methods inherited from interface edu.ksu.cis.projects.bogor.module.value.INonPrimitiveValue
getReferenceId
 
Methods inherited from interface edu.ksu.cis.projects.bogor.module.value.IValue
equals, getType, getTypeId, hashCode, toString, validate
 
Methods inherited from interface edu.ksu.cis.projects.bogor.util.Disposable
dispose
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getExp

Exp getExp()
Gets the exp AST of this exp AST value.

Returns:
The exp AST of this exp AST value. Non-null.

clone

IExpASTValue clone(Map<Object,Object> cloneMap)
Override to specialize return type

Specified by:
clone in interface INonPrimitiveValue
Specified by:
clone in interface IValue
Parameters:
cloneMap - Original values (IValue) to their clones ( IValue) mapping. The clone map to solve circular references in values. If this value is a key in the map, then this method returns the value of the key in the map. Must be non-null.
Returns:
The clone of this value. Non-null.