| | |
| | | { |
| | | return _testCount; |
| | | } |
| | | |
| | | public String getConvertDB() |
| | | { |
| | | return _convertDB; |
| | | } |
| | | |
| | | public void setConvertDB(String convertDB) |
| | | { |
| | | _convertDB = convertDB; |
| | | } |
| | | |
| | | public String getConvertFile() |
| | | { |
| | | return _convertFile; |
| | | } |
| | | |
| | | public void setConvertFile(String convertFile) |
| | | { |
| | | _convertFile = convertFile; |
| | | } |
| | | |
| | | public boolean checkConvertDB() |
| | | { |
| | | return _convertDB != null && !_convertDB.equalsIgnoreCase("false") && |
| | | !_convertDB.equalsIgnoreCase("no") && !_convertDB.equalsIgnoreCase("0"); |
| | | } |
| | | |
| | | public boolean checkConvertFile() |
| | | { |
| | | return _convertFile != null && !_convertFile.equalsIgnoreCase("false") && |
| | | !_convertFile.equalsIgnoreCase("no") && !_convertFile.equalsIgnoreCase("0"); |
| | | } |
| | | } |