Package jadx.core.dex.attributes.nodes
Class MethodOverrideAttr
java.lang.Object
jadx.api.plugins.input.data.attributes.PinnedAttribute
jadx.core.dex.attributes.nodes.MethodOverrideAttr
- All Implemented Interfaces:
IJadxAttribute
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Set<IMethodDetails> private final List<IMethodDetails> All methods overridden by current method.private SortedSet<MethodNode> All method nodes from override hierarchy. -
Constructor Summary
ConstructorsConstructorDescriptionMethodOverrideAttr(List<IMethodDetails> overrideList, SortedSet<MethodNode> relatedMthNodes, Set<IMethodDetails> baseMethods) -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRelatedMthNodes(SortedSet<MethodNode> relatedMthNodes) toString()Methods inherited from class jadx.api.plugins.input.data.attributes.PinnedAttribute
keepLoadedMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface jadx.api.plugins.input.data.attributes.IJadxAttribute
toAttrString
-
Field Details
-
overrideList
All methods overridden by current method. Current method excluded, empty for base method. -
baseMethods
-
-
Constructor Details
-
MethodOverrideAttr
public MethodOverrideAttr(List<IMethodDetails> overrideList, SortedSet<MethodNode> relatedMthNodes, Set<IMethodDetails> baseMethods)
-
-
Method Details