// abstract means that you cant create instances of the class.
// if you subclass this class you must implement the abstract
// methods (or declare yourself as abstract).
public abstract class AODigit {
 	public abstract AODigit getNext();
        public abstract int getDigit();
        public abstract void setDigit(int s);
	public abstract void accept(OVisitor ov);
}
