org.apache.commons.javaflow.bytecode.transformation.bcel.analyser
Class ExceptionHandler

java.lang.Object
  extended by org.apache.commons.javaflow.bytecode.transformation.bcel.analyser.ExceptionHandler

public class ExceptionHandler
extends java.lang.Object

This class represents an exception handler; that is, an ObjectType representing a subclass of java.lang.Throwable and the instruction the handler starts off (represented by an InstructionContext). WARNING! These classes are a fork of the bcel verifier.

Version:
$Id: ExceptionHandler.java 480487 2006-11-29 08:54:42Z bayard $
Author:
Enver Haase

Method Summary
 org.apache.bcel.generic.ObjectType getExceptionType()
          Returns the type of the exception that's handled.
 org.apache.bcel.generic.InstructionHandle getHandlerStart()
          Returns the InstructionHandle where the handler starts off.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getExceptionType

public org.apache.bcel.generic.ObjectType getExceptionType()
Returns the type of the exception that's handled. 'null' means 'ANY'.


getHandlerStart

public org.apache.bcel.generic.InstructionHandle getHandlerStart()
Returns the InstructionHandle where the handler starts off.



Copyright © 2004-2008 The Apache Software Foundation. All Rights Reserved.