org.netbeans.modules.classfile/1 1.35

org.netbeans.modules.classfile
Class LocalVariableTypeTableEntry

java.lang.Object
  extended by org.netbeans.modules.classfile.LocalVariableTypeTableEntry

public final class LocalVariableTypeTableEntry
extends Object

An entry in the local variable type table of a method's code attribute. This table is similar to the local variable table, but differs in that it only contains the type information for those variables that are generic reference types. Local variables that are generic reference types have entries in both tables, while other local variable types are only defined in the local variable table.


Method Summary
 int getIndex()
          Returns the variable's index into the local variable array for the current stack frame.
 int getLength()
          Returns the length of the range of code bytes where this variable is valid.
 String getName()
          Returns the name of this variable.
 String getSignature()
          Returns the generic field type signature of this variable.
 int getStartPC()
          Returns the first byte code offset where this variable is valid.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getStartPC

public final int getStartPC()
Returns the first byte code offset where this variable is valid.


getLength

public final int getLength()
Returns the length of the range of code bytes where this variable is valid.


getName

public final String getName()
Returns the name of this variable.


getSignature

public final String getSignature()
Returns the generic field type signature of this variable.


getIndex

public final int getIndex()
Returns the variable's index into the local variable array for the current stack frame.


org.netbeans.modules.classfile/1 1.35

Built on May 22 2012.  |  Portions Copyright 1997-2012 Oracle. All rights reserved.