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 boolean
equals(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:TryBlock
Compares 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:
equals
in interfaceTryBlock<EH extends ExceptionHandler>
- Overrides:
equals
in 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
-
-