类 ExceptionInfo
- java.lang.Object
-
- proguard.util.SimpleProcessable
-
- proguard.classfile.attribute.ExceptionInfo
-
- 所有已实现的接口:
java.io.Serializable,Processable
public class ExceptionInfo extends SimpleProcessable
Representation of an exception table entry.- 另请参阅:
- 序列化表格
-
-
字段概要
字段 修饰符和类型 字段 说明 intu2catchTypeintu2endPCintu2handlerPCintu2startPC-
从类继承的字段 proguard.util.SimpleProcessable
processingFlags, processingInfo
-
-
构造器概要
构造器 构造器 说明 ExceptionInfo()Creates an uninitialized ExceptionInfo.ExceptionInfo(int u2startPC, int u2endPC, int u2handlerPC, int u2catchType)Creates an ExceptionInfo with the given properties.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleanisApplicable(int instructionOffset)Returns whether the exception's try block contains the instruction at the given offset.booleanisApplicable(int startOffset, int endOffset)Returns whether the exception's try block overlaps with the specified block of instructions.-
从类继承的方法 proguard.util.SimpleProcessable
addProcessingFlags, getProcessingFlags, getProcessingInfo, hasProcessingFlags, removeProcessingFlags, setProcessingFlags, setProcessingInfo
-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 proguard.util.Processable
accept
-
-
-
-
方法详细资料
-
isApplicable
public boolean isApplicable(int instructionOffset)
Returns whether the exception's try block contains the instruction at the given offset.
-
isApplicable
public boolean isApplicable(int startOffset, int endOffset)Returns whether the exception's try block overlaps with the specified block of instructions.
-
-