1 package JSci.maths; 2 3 /** 4 * The AbstractMath superclass provides an abstract encapsulation of maths. 5 * All classes with a postfix of Math should extend this class. 6 * @version 1.0 7 * @author Mark Hale 8 */ 9 public abstract class AbstractMath extends Object { 10 protected AbstractMath() {} 11 } 12 13