Eclipse JDT
2.0

org.eclipse.jdt.core.util
Interface IExceptionAttribute

All Superinterfaces:
IClassFileAttribute

public interface IExceptionAttribute
extends IClassFileAttribute

Description of a constant value attribute as described in the JVM specifications. This interface may be implemented by clients.

Since:
2.0

Method Summary
 int[] getExceptionIndexes()
          Answer back the exception indexes of the exception attribute.
 char[][] getExceptionNames()
          Answer back the exception names of the exception attribute.
 int getExceptionsNumber()
          Answer back the number of exceptions of the exception attribute.
 
Methods inherited from interface org.eclipse.jdt.core.util.IClassFileAttribute
getAttributeLength, getAttributeName, getAttributeNameIndex
 

Method Detail

getExceptionsNumber

public int getExceptionsNumber()
Answer back the number of exceptions of the exception attribute.

Returns:
the number of exceptions of the exception attribute

getExceptionNames

public char[][] getExceptionNames()
Answer back the exception names of the exception attribute. Answers an empty collection if none.

Returns:
the exception names of the exception attribute. Answers an empty collection if none

getExceptionIndexes

public int[] getExceptionIndexes()
Answer back the exception indexes of the exception attribute. Answers an empty collection if none.

Returns:
the exception indexes of the exception attribute. Answers an empty collection if none

Eclipse JDT
2.0

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