summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/graphical/Tolerance.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/graphical/Tolerance.java')
-rw-r--r--qadevOOo/runner/graphical/Tolerance.java23
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;
+ }
+}