~ubuntu-branches/ubuntu/trusty/cdk/trusty-proposed

« back to all changes in this revision

Viewing changes to src/org/openscience/cdk/validate/IValidator.java

  • Committer: Bazaar Package Importer
  • Author(s): Paul Cager
  • Date: 2008-04-09 21:17:53 UTC
  • Revision ID: james.westby@ubuntu.com-20080409211753-46lmjw5z8mx5pd8d
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $RCSfile$
 
2
 * $Author: egonw $
 
3
 * $Date: 2007-01-04 18:46:10 +0100 (Thu, 04 Jan 2007) $
 
4
 * $Revision: 7636 $
 
5
 * 
 
6
 * Copyright (C) 2003-2007  The Chemistry Development Kit (CDK) project
 
7
 * 
 
8
 * Contact: cdk-devel@lists.sourceforge.net
 
9
 * 
 
10
 * This program is free software; you can redistribute it and/or
 
11
 * modify it under the terms of the GNU Lesser General Public License
 
12
 * as published by the Free Software Foundation; either version 2.1
 
13
 * of the License, or (at your option) any later version.
 
14
 * 
 
15
 * This program is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 * GNU Lesser General Public License for more details.
 
19
 * 
 
20
 * You should have received a copy of the GNU Lesser General Public License
 
21
 * along with this program; if not, write to the Free Software
 
22
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 
 
23
 * 
 
24
 */
 
25
package org.openscience.cdk.validate;
 
26
 
 
27
import org.openscience.cdk.interfaces.IAtom;
 
28
import org.openscience.cdk.interfaces.IAtomContainer;
 
29
import org.openscience.cdk.interfaces.IAtomType;
 
30
import org.openscience.cdk.interfaces.IBond;
 
31
import org.openscience.cdk.interfaces.IChemFile;
 
32
import org.openscience.cdk.interfaces.IChemModel;
 
33
import org.openscience.cdk.interfaces.IChemObject;
 
34
import org.openscience.cdk.interfaces.IChemSequence;
 
35
import org.openscience.cdk.interfaces.ICrystal;
 
36
import org.openscience.cdk.interfaces.IElectronContainer;
 
37
import org.openscience.cdk.interfaces.IElement;
 
38
import org.openscience.cdk.interfaces.IIsotope;
 
39
import org.openscience.cdk.interfaces.IMolecule;
 
40
import org.openscience.cdk.interfaces.IReaction;
 
41
import org.openscience.cdk.interfaces.IMoleculeSet;
 
42
import org.openscience.cdk.interfaces.IReactionSet;
 
43
 
 
44
/**
 
45
 * Interface that Validators need to implement to be used in validation.
 
46
 *
 
47
 * @author   Egon Willighagen
 
48
 * @cdk.created  2003-03-28
 
49
 */ 
 
50
public interface IValidator {
 
51
 
 
52
    public ValidationReport validateAtom(IAtom subject);
 
53
    public ValidationReport validateAtomContainer(IAtomContainer subject);
 
54
    public ValidationReport validateAtomType(IAtomType subject);
 
55
    public ValidationReport validateBond(IBond subject);
 
56
    public ValidationReport validateChemFile(IChemFile subject);
 
57
    public ValidationReport validateChemModel(IChemModel subject);
 
58
    public ValidationReport validateChemObject(IChemObject object);
 
59
    public ValidationReport validateChemSequence(IChemSequence subject);
 
60
    public ValidationReport validateCrystal(ICrystal subject);
 
61
    public ValidationReport validateElectronContainer(IElectronContainer subject);
 
62
    public ValidationReport validateElement(IElement subject);
 
63
    public ValidationReport validateIsotope(IIsotope subject);
 
64
    public ValidationReport validateMolecule(IMolecule subject);
 
65
    public ValidationReport validateReaction(IReaction subject);
 
66
    public ValidationReport validateMoleculeSet(IMoleculeSet subject);
 
67
    public ValidationReport validateReactionSet(IReactionSet subject);
 
68
    
 
69
}