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

Variable Index

 o _dat

Constructor Index

 o ARBObject (Object)
Decorates the given raw data

Method Index

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

Variables

 o _dat
private Object _dat

Constructors

 o ARBObject
public  ARBObject(Object dat)
Decorates the given raw data.

Parameters:
dat - the raw data.

Methods

 o getObject
public Object getObject()
Get the unmarked raw data.

 o toString
public String toString()
 o color
public abstract String color()
 o execute
public abstract Object execute(IRBVisitor v, Object[] inp)
Hook method for visitors.