summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/graphical/Tolerance.java
blob: 90e853c9124c8d70097d4e8469637229de60abe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package graphical;

/**
 *
 * @author ll93751
 */
public class Tolerance
{
    private int m_nTolerance;
    public Tolerance(int _nAccept)
    {
        m_nTolerance = _nAccept;
    }
    public int getAccept()
    {
        return m_nTolerance;
    }
}