Source code: com/chaoswg/xtc4y/classdesc/ValueCPEntry.java
1 //$Header: /cvsroot/xtc4y/xtc4y/src/com/chaoswg/xtc4y/classdesc/ValueCPEntry.java,v 1.1.1.1 2003/08/07 13:40:28 toggm Exp $
2 /******************************************************************************
3 * XTC4y - eXtreme Testing Collection 4 you *
4 * -------------------------------------------------------------------------- *
5 * URL: http://www.chaoswg.com/xtc4y *
6 * Author: Mike Toggweiler (2.dog@gmx.ch) *
7 * *
8 * Last Updated: $Date: 2003/08/07 13:40:28 $, by $Author: toggm $ *
9 * Version: $Revision: 1.1.1.1 $ *
10 * -------------------------------------------------------------------------- *
11 * COPYRIGHT: (c) 2003 by Mike Toggweiler *
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; either version 2 of the License, or *
16 * (at your option) any later version. *
17 *****************************************************************************/
18 package com.chaoswg.xtc4y.classdesc;
19
20 /**
21 * This abstract class is just used to identify a value constant pool entry.
22 * a value cp entry max be a float, int, long, double, short, byte, char,
23 * boolean or a String. More informations about the mappping of these
24 * types to the cp entry is shown in Table 4.6 in §4.7.2
25 * @author Mike Toggweiler
26 **/
27 public abstract class ValueCPEntry extends ConstantPoolEntry {
28 /**
29 * Create a value entry with a tag, representing the type
30 **/
31 protected ValueCPEntry(byte tag) {
32 super(tag);
33 }
34
35 }