1    
2    /*
3    
4      The author of this software is Ian Kaplan
5      Bear Products International
6      www.bearcave.com
7      iank@bearcave.com
8    
9      Copyright (c) Ian Kaplan, 1999, 2000
10   
11     See copyright file for usage and licensing
12   
13   */
14   
15   package jconst;
16   
17   import java.io.*;
18   import util.*;
19   
20   
21   /*
22    * interface constPoolTags
23    *
24   
25      The purpose of this interface is to define the tag
26      values for the constant table tags.
27    
28    */
29   interface constPoolTags {
30     int CONSTANT_Class = 7;
31     int CONSTANT_Fieldref = 9;
32     int CONSTANT_Methodref = 10;
33     int CONSTANT_InterfaceMethodref = 11;
34     int CONSTANT_String = 8;
35     int CONSTANT_Integer = 3;
36     int CONSTANT_Float = 4;
37     int CONSTANT_Long = 5;
38     int CONSTANT_Double = 6;
39     int CONSTANT_NameAndType = 12;
40     int CONSTANT_Utf8 = 1;
41   } // interface constPoolTags
42   
43