Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: joelib/smarts/types/SMARTSPatternString.java


1   ///////////////////////////////////////////////////////////////////////////////
2   //  Filename: $RCSfile: SMARTSPatternString.java,v $
3   //  Purpose:  Atom representation.
4   //  Language: Java
5   //  Compiler: JDK 1.4
6   //  Authors:  Joerg K. Wegner
7   //  Version:  $Revision: 1.5 $
8   //            $Date: 2003/08/19 13:11:28 $
9   //            $Author: wegner $
10  //  Original Author: ???, OpenEye Scientific Software
11  //  Original Version: babel 2.0a1
12  //
13  //  Copyright (c) Dept. Computer Architecture, University of Tuebingen, Germany
14  //
15  //  This program is free software; you can redistribute it and/or modify
16  //  it under the terms of the GNU General Public License as published by
17  //  the Free Software Foundation version 2 of the License.
18  //
19  //  This program is distributed in the hope that it will be useful,
20  //  but WITHOUT ANY WARRANTY; without even the implied warranty of
21  //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  //  GNU General Public License for more details.
23  ///////////////////////////////////////////////////////////////////////////////
24  package joelib.smarts.types;
25  
26  
27  /*==========================================================================*
28   * IMPORTS
29   *========================================================================== */
30  import joelib.smarts.JOESmartsPattern;
31  
32  
33  /*==========================================================================*
34   * CLASS DECLARATION
35   *========================================================================== */
36  
37  /**
38   *  Atom representation.
39   *
40   * @author     wegnerj
41   *     30. Januar 2002
42   */
43  public class SMARTSPatternString implements java.io.Serializable
44  {
45      //~ Instance fields ////////////////////////////////////////////////////////
46  
47      /*-------------------------------------------------------------------------*
48       * public member variables
49       *------------------------------------------------------------------------- */
50  
51      /**
52       *  Description of the Field
53       */
54      public JOESmartsPattern sp;
55  
56      /**
57       *  Description of the Field
58       */
59      public String s;
60  
61      //~ Constructors ///////////////////////////////////////////////////////////
62  
63      /*-------------------------------------------------------------------------*
64       * constructor
65       *------------------------------------------------------------------------- */
66  
67      /**
68       *  Constructor for the SMARTSPatternString object
69       *
70       * @param  _sp  Description of the Parameter
71       * @param  _s   Description of the Parameter
72       */
73      public SMARTSPatternString(JOESmartsPattern _sp, String _s)
74      {
75          sp = _sp;
76          s = _s;
77      }
78  }
79  ///////////////////////////////////////////////////////////////////////////////
80  //  END OF FILE.
81  ///////////////////////////////////////////////////////////////////////////////