Eclipse JDT
Release 3.1

org.eclipse.jdt.core.util
Interface IVerificationTypeInfo


public interface IVerificationTypeInfo

Description of a verification type info as described in the JVM specifications. This interface may be implemented by clients.

Since:
3.0

Method Summary
 char[] getClassTypeName()
          Answer back the name of the class type referenced by the index in the constant pool as described in the JVM specifications.
 int getConstantPoolIndex()
          Answer back the constant pool index of this verification type info as described in the JVM specifications.
 int getOffset()
          Answer back the offset of this verification type info as described in the JVM specifications.
 int getTag()
          Answer back the tag of this verification type info as described in the JVM specifications.
 

Method Detail

getTag

public int getTag()
Answer back the tag of this verification type info as described in the JVM specifications.

Returns:
the tag of this verification type info as described in the JVM specifications
Since:
3.0

getOffset

public int getOffset()
Answer back the offset of this verification type info as described in the JVM specifications. This makes sense only if the tag is 8.

Returns:
the offset of this verification type info as described in the JVM specifications
Since:
3.0

getConstantPoolIndex

public int getConstantPoolIndex()
Answer back the constant pool index of this verification type info as described in the JVM specifications. This makes sense only if the tag is 7.

Returns:
the constant pool index of this verification type info as described in the JVM specifications
Since:
3.0

getClassTypeName

public char[] getClassTypeName()
Answer back the name of the class type referenced by the index in the constant pool as described in the JVM specifications. This makes sense only if the tag is 7.

Returns:
the name of the class type referenced by the index in the constant pool as described in the JVM specifications
Since:
3.0

Eclipse JDT
Release 3.1

Copyright (c) IBM Corp. and others 2000, 2005. All Rights Reserved.