KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > sli > kim > classfile > LocalVariableInfo


1 package sli.kim.classfile;
2
3 import java.io.*;
4
5 /**
6 * A class for storing information about local variables.
7 * This class represents one row in the LocalVariableTable.
8 *
9 * @see sli.kim.classfile.CodeInfo#setLocalVariableTable()
10 */

11 public class LocalVariableInfo {
12     public short startPC, length, slot;
13     public String JavaDoc name, signature;
14
15     public LocalVariableInfo(short startPC, short length, String JavaDoc name,
16         String JavaDoc signature, short slot)
17     {
18         this.startPC = startPC;
19         this.length = length;
20         this.name = name;
21         this.signature = signature;
22         this.slot = slot;
23     }
24 }
25
Popular Tags