1 /* 2 * To change this template, choose Tools | Templates 3 * and open the template in the editor. 4 */ 5 6 package graphical; 7 8 /** 9 * 10 * @author ll93751 11 */ 12 public class Tolerance 13 { 14 private int m_nTolerance; 15 public Tolerance(int _nAccept) 16 { 17 m_nTolerance = _nAccept; 18 } 19 public int getAccept() 20 { 21 return m_nTolerance; 22 } 23 } 24