Class treeN.ARBObject
- public abstract class ARBObject
- extends Object
Decorating an Object to mark it with Red or Black.
Red and Black are implemented as subclasses.
- Author:
- DXN

_dat

ARBObject
(Object)
- Decorates the given raw data

color
()
execute
(IRBVisitor, Object[])
- Hook method for visitors
getObject
()
- Get the unmarked raw data
toString
()

_dat
private Object _dat

ARBObject
public ARBObject(Object dat)
- Decorates the given raw data.
- Parameters:
- dat - the raw data.

getObject
public Object getObject()
- Get the unmarked raw data.
toString
public String toString()
color
public abstract String color()
execute
public abstract Object execute(IRBVisitor v, Object[] inp)
- Hook method for visitors.