diff options
author | Lars Langhans <lla@openoffice.org> | 2010-05-10 13:35:27 +0200 |
---|---|---|
committer | Lars Langhans <lla@openoffice.org> | 2010-05-10 13:35:27 +0200 |
commit | 8eb9f980b429bd8f553460025600c601a8e45ecf (patch) | |
tree | 04e4a09b66a71a615a2d3c50b6a3a147919738d7 /qadevOOo/runner/graphical | |
parent | 049d85552cbdfef0c0147a6bdc9e2e9a14ecc513 (diff) |
gfxcmp02: #159601# cleanups
Diffstat (limited to 'qadevOOo/runner/graphical')
-rw-r--r-- | qadevOOo/runner/graphical/Tolerance.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/qadevOOo/runner/graphical/Tolerance.java b/qadevOOo/runner/graphical/Tolerance.java new file mode 100644 index 000000000000..90e853c9124c --- /dev/null +++ b/qadevOOo/runner/graphical/Tolerance.java @@ -0,0 +1,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; + } +} |