Source of ConstantsInterface.java


  1: /**
  2:  @author Frank M. Carrano, Timothy M. Henry
  3:  @version 5.0
  4: */
  5: public interface ConstantsInterface
  6: {
  7:    public static final double INCHES_PER_CENTIMETER = 0.39370079;
  8:    public static final double FEET_PER_METER = 3.2808399;
  9:    public static final double MILES_PER_KILOMETER = 0.62137119;
 10: } // end ConstantsInterface