public interface

IDexExceptionItem

com.pnfsoftware.jeb.core.units.code.android.dex.IDexExceptionItem

Class Overview

This interface represents try-catch information for a bytecode area of a method. Retrieved via getExceptionItems().

Summary

Public Methods
abstract List<? extends IDexExceptionHandler> getHandlers()
Get the list of catch handlers.
abstract int getTryAddress()
Get the code address of the beginning of the try block.
abstract int getTryAddressEnd()
abstract int getTrySize()
Get the code size of the try block

Public Methods

public abstract List<? extends IDexExceptionHandler> getHandlers ()

Get the list of catch handlers.

Returns
  • the list of handlers, which may contain at most one non-typed handler

public abstract int getTryAddress ()

Get the code address of the beginning of the try block.

Returns
  • the address in bytes

public abstract int getTryAddressEnd ()

public abstract int getTrySize ()

Get the code size of the try block

Returns
  • the size in bytes