repo.or.cz
/
LibreOffice.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git]
/
qadevOOo
/
runner
/
graphical
/
Tolerance.java
blob
90e853c9124c8d70097d4e8469637229de60abe1
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
}