// 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 void increment();
	public abstract String toString();
}
