FileDocCategorySizeDatePackage
LocalVariable.javaAPI DocJ2ME CLDC 1.11148Wed Feb 05 15:56:04 GMT 2003kdp.classparser.attributes

LocalVariable

public class LocalVariable extends Object

Fields Summary
private String
name
private String
type
private int
length
private int
slot
private long
codeIndex
Constructors Summary
public LocalVariable(String name, String type, int codeIndex, int length, int slot)

        this.name = name;
        this.type = type;
        this.codeIndex = codeIndex;
        this.length = length;
        this.slot = slot;
    
Methods Summary
public longgetCodeIndex()

        return codeIndex;
    
public intgetLength()

        return length;
    
public java.lang.StringgetName()

        return name;
    
public intgetSlot()

 
        return slot;
    
public java.lang.StringgetType()

        return type;   
    
public voidprint()

        Log.LOGN(5, "Name: " + name + "\nClass: " + type);  
        Log.LOGN(5, "CodeIndex: " + codeIndex + "\nLength: " + length);
         Log.LOGN(5, "Slot: " + slot);