Source code: joelib/io/types/cml/ResultCMLProperties.java
1 ///////////////////////////////////////////////////////////////////////////////
2 //Filename: $RCSfile: ResultCMLProperties.java,v $
3 //Purpose: Chemical Markup Language.
4 //Language: Java
5 //Compiler: JDK 1.4
6 //Authors: Joerg K. Wegner
7 //Version: $Revision: 1.2 $
8 // $Date: 2003/08/19 13:11:26 $
9 // $Author: wegner $
10 //
11 //Copyright (C) 1997-2003 The Chemistry Development Kit (CDK) project
12 //Copyright (c) Dept. Computer Architecture, University of Tuebingen, Germany
13 //
14 //This program is free software; you can redistribute it and/or modify
15 //it under the terms of the GNU General Public License as published by
16 //the Free Software Foundation version 2 of the License.
17 //
18 //This program is distributed in the hope that it will be useful,
19 //but WITHOUT ANY WARRANTY; without even the implied warranty of
20 //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 //GNU General Public License for more details.
22 ///////////////////////////////////////////////////////////////////////////////
23 package joelib.io.types.cml;
24
25 import joelib.molecule.*;
26
27 import joelib.util.*;
28
29 import joelib.util.types.*;
30
31 /*==========================================================================*
32 * IMPORTS
33 *========================================================================== */
34 import java.io.*;
35
36 import java.util.*;
37
38
39 /*==========================================================================*
40 * INTERFACE DECLARATION
41 *========================================================================== */
42
43 /**
44 * Interface for a CML molecule writer.
45 *
46 * @author wegnerj
47 * @license GPL
48 * @cvsversion $Revision: 1.2 $, $Date: 2003/08/19 13:11:26 $
49 * @cite wil01
50 */
51 public interface ResultCMLProperties
52 {
53 //~ Methods ////////////////////////////////////////////////////////////////
54
55 public Enumeration getCMLProperties();
56
57 /*-------------------------------------------------------------------------*
58 * private static member variables
59 *------------------------------------------------------------------------- */
60 /*-------------------------------------------------------------------------*
61 * public methods
62 *------------------------------------------------------------------------- */
63 public void addCMLProperty(StringString property);
64 }
65 ///////////////////////////////////////////////////////////////////////////////
66 // END OF FILE.
67 ///////////////////////////////////////////////////////////////////////////////