Source code: joelib/util/types/Template.java
1 ///////////////////////////////////////////////////////////////////////////////
2 // Filename: $RCSfile: Template.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 /*==========================================================================*
29 * CLASS DECLARATION
30 *========================================================================== */
31
32 /**
33 * Template values.
34 *
35 * @author wegnerj
36 * @license GPL
37 * @cvsversion $Revision: 1.5 $, $Date: 2003/08/19 13:11:29 $
38 */
39 public class Template implements java.io.Serializable
40 {
41 //~ Instance fields ////////////////////////////////////////////////////////
42
43 /*-------------------------------------------------------------------------*
44 * public member variables
45 *------------------------------------------------------------------------- */
46
47 /**
48 * Description of the Field
49 */
50 public int flag;
51
52 /**
53 * Description of the Field
54 */
55 public int n1;
56
57 /**
58 * Description of the Field
59 */
60 public int n2;
61
62 /**
63 * Description of the Field
64 */
65 public int n3;
66
67 /**
68 * Description of the Field
69 */
70 public int n4;
71
72 /**
73 * Description of the Field
74 */
75 public short count;
76
77 /**
78 * Description of the Field
79 */
80 public short elem;
81
82 /*-------------------------------------------------------------------------*
83 * constructor
84 *------------------------------------------------------------------------- */
85 /*-------------------------------------------------------------------------*
86 * public methods
87 *------------------------------------------------------------------------- */
88 }
89 ///////////////////////////////////////////////////////////////////////////////
90 // END OF FILE.
91 ///////////////////////////////////////////////////////////////////////////////