00001 package edu.stanford.hci.r3.units; 00002 00011 public class Inches extends Units { 00012 00016 public static final Units ONE = new Inches(1.0); 00017 00021 public Inches() { 00022 super(1); 00023 } 00024 00028 public Inches(double inches) { 00029 super(inches); 00030 } 00031 00035 @Override 00036 protected double getNumberOfUnitsInOneInch() { 00037 return 1.0; 00038 } 00039 }
1.4.7