@HashCodeAndEqualsPlugin.Enhance protected static class SuperMethod.Binder.DelegationMethod extends java.lang.Object implements StackManipulation
StackManipulation.Compound, StackManipulation.Illegal, StackManipulation.Size, StackManipulation.Trivial
Modifier and Type | Field and Description |
---|---|
private boolean |
cached
true if the method constant should be cached. |
private boolean |
privileged
true if this method should be looked up using an AccessController . |
private Implementation.SpecialMethodInvocation |
specialMethodInvocation
The special method invocation that represents the super method call.
|
Modifier | Constructor and Description |
---|---|
protected |
DelegationMethod(Implementation.SpecialMethodInvocation specialMethodInvocation,
boolean cached,
boolean privileged)
Creates a new delegation method.
|
Modifier and Type | Method and Description |
---|---|
StackManipulation.Size |
apply(org.objectweb.asm.MethodVisitor methodVisitor,
Implementation.Context implementationContext)
Applies the stack manipulation that is described by this instance.
|
boolean |
isValid()
Determines if this stack manipulation is valid.
|
private final Implementation.SpecialMethodInvocation specialMethodInvocation
private final boolean cached
true
if the method constant should be cached.private final boolean privileged
true
if this method should be looked up using an AccessController
.protected DelegationMethod(Implementation.SpecialMethodInvocation specialMethodInvocation, boolean cached, boolean privileged)
specialMethodInvocation
- The special method invocation that represents the super method call.cached
- true
if the method constant should be cached.privileged
- true
if this method should be looked up using an AccessController
.public boolean isValid()
isValid
in interface StackManipulation
false
, this manipulation cannot be applied and should throw an exception.public StackManipulation.Size apply(org.objectweb.asm.MethodVisitor methodVisitor, Implementation.Context implementationContext)
apply
in interface StackManipulation
methodVisitor
- The method visitor used to write the method implementation to.implementationContext
- The context of the current implementation.