Package org.jf.dexlib2.base
Class BaseTryBlock<EH extends ExceptionHandler>
- java.lang.Object
-
- org.jf.dexlib2.base.BaseTryBlock<EH>
-
- All Implemented Interfaces:
TryBlock<EH>
- Direct Known Subclasses:
BuilderTryBlock,BuilderTryBlock,DexBackedTryBlock,ImmutableTryBlock,TryBlockRewriter.RewrittenTryBlock
public abstract class BaseTryBlock<EH extends ExceptionHandler> extends java.lang.Object implements TryBlock<EH>
-
-
Constructor Summary
Constructors Constructor Description BaseTryBlock()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)Compares this TryBlock to another TryBlock for equality.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jf.dexlib2.iface.TryBlock
getCodeUnitCount, getExceptionHandlers, getStartCodeAddress
-
-
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object o)
Description copied from interface:TryBlockCompares this TryBlock to another TryBlock for equality. This TryBlock is equal to another TryBlock if all 3 fields are equal. The exception handlers are tested for equality using the usual List equality semantics.- Specified by:
equalsin interfaceTryBlock<EH extends ExceptionHandler>- Overrides:
equalsin classjava.lang.Object- Parameters:
o- The object to be compared for equality with this TryBlock- Returns:
- true if the specified object is equal to this TryBlock
-
-