Source code: joelib/util/types/AtomIntInt.java
1 ///////////////////////////////////////////////////////////////////////////////
2 // Filename: $RCSfile: AtomIntInt.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:29 $
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.util.types;
23
24
25 /*==========================================================================*
26 * IMPORTS
27 *========================================================================== */
28 import joelib.molecule.*;
29
30
31 /*==========================================================================*
32 * CLASS DECLARATION
33 *========================================================================== */
34
35 /**
36 * Atom and {@link IntInt}.
37 *
38 * @author wegnerj
39 * @license GPL
40 * @cvsversion $Revision: 1.5 $, $Date: 2003/08/19 13:11:29 $
41 */
42 public class AtomIntInt implements java.io.Serializable
43 {
44 //~ Instance fields ////////////////////////////////////////////////////////
45
46 /**
47 * Description of the Field
48 */
49 public IntInt ii;
50
51 /*-------------------------------------------------------------------------*
52 * public member variables
53 *------------------------------------------------------------------------- */
54
55 /**
56 * Description of the Field
57 */
58 public JOEAtom a;
59
60 //~ Constructors ///////////////////////////////////////////////////////////
61
62 /*-------------------------------------------------------------------------*
63 * constructor
64 *------------------------------------------------------------------------- */
65
66 /**
67 * Constructor for the AtomIntInt object
68 *
69 * @param _a Description of the Parameter
70 * @param _ii Description of the Parameter
71 */
72 public AtomIntInt(JOEAtom _a, IntInt _ii)
73 {
74 a = _a;
75 ii = _ii;
76 }
77 }
78 ///////////////////////////////////////////////////////////////////////////////
79 // END OF FILE.
80 ///////////////////////////////////////////////////////////////////////////////