source: CMDIValidator/trunk/cmdi-validator-core/src/main/java/eu/clarin/cmdi/validator/CMDIValidationHandlerAdapter.java @ 5402

Last change on this file since 5402 was 5402, checked in by Oliver Schonefeld, 10 years ago
  • some more re-factoring and renaming
  • Property svn:eol-style set to native
File size: 1.0 KB
Line 
1/**
2 * This software is copyright (c) 2014 by
3 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
4 * This is free software. You can redistribute it
5 * and/or modify it under the terms described in
6 * the GNU General Public License v3 of which you
7 * should have received a copy. Otherwise you can download
8 * it from
9 *
10 *   http://www.gnu.org/licenses/gpl-3.0.txt
11 *
12 * @copyright Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
13 *
14 * @license http://www.gnu.org/licenses/gpl-3.0.txt
15 *  GNU General Public License v3
16 */
17package eu.clarin.cmdi.validator;
18
19
20public class CMDIValidationHandlerAdapter implements CMDIValidationHandler {
21
22    @Override
23    public void onJobStarted() throws CMDIValidatorException {
24    }
25
26
27    @Override
28    public void onJobFinished(final CMDIValidator.Result result)
29            throws CMDIValidatorException {
30    }
31
32
33    @Override
34    public void onValidationReport(final CMDIValidationReport report)
35            throws CMDIValidatorException {
36    }
37
38} // class CMDIValidationHandlerAdapter
Note: See TracBrowser for help on using the repository browser.