Source code: joelib/algo/morgan/TieResolver.java
1 ///////////////////////////////////////////////////////////////////////////////
2 // Filename: $RCSfile: TieResolver.java,v $
3 // Purpose: Interface for resolving renumbering ties.
4 // Language: Java
5 // Compiler: JDK 1.4
6 // Authors: Joerg K. Wegner
7 // Version: $Revision: 1.3 $
8 // $Date: 2003/08/19 13:11:24 $
9 // $Author: wegner $
10 //
11 // Copyright (c) Dept. Computer Architecture, University of Tuebingen, Germany
12 //
13 // This program is free software; you can redistribute it and/or modify
14 // it under the terms of the GNU General Public License as published by
15 // the Free Software Foundation version 2 of the License.
16 //
17 // This program is distributed in the hope that it will be useful,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU General Public License for more details.
21 ///////////////////////////////////////////////////////////////////////////////
22 package joelib.algo.morgan;
23
24
25 /*==========================================================================*
26 * IMPORTS
27 *========================================================================== */
28 import joelib.molecule.JOEMol;
29
30
31 /*==========================================================================*
32 * CLASS DECLARATION
33 *========================================================================== */
34
35 /**
36 * Interface for resolving renumbering ties.
37 *
38 * @author wegnerj
39 * @license GPL
40 * @cvsversion $Revision: 1.3 $, $Date: 2003/08/19 13:11:24 $
41 */
42 public interface TieResolver
43 {
44 //~ Methods ////////////////////////////////////////////////////////////////
45
46 public int getTieResolverHashcode();
47
48 /*-------------------------------------------------------------------------*
49 * public member variables
50 *------------------------------------------------------------------------- */
51 public SingleTieResolver[] getTieResolvers();
52
53 public boolean init(JOEMol mol);
54 }
55 ///////////////////////////////////////////////////////////////////////////////
56 // END OF FILE.
57 ///////////////////////////////////////////////////////////////////////////////