Package net.bytebuddy.asm
Interface Advice.Dispatcher.SuppressionHandler.ReturnValueProducer
-
- All Known Implementing Classes:
Advice.Dispatcher.Delegating.Resolved.AdviceMethodWriter
,Advice.Dispatcher.Delegating.Resolved.AdviceMethodWriter.ForMethodEnter
,Advice.Dispatcher.Delegating.Resolved.AdviceMethodWriter.ForMethodExit
,Advice.Dispatcher.Inlining.CodeTranslationVisitor
,Advice.Dispatcher.Inlining.CodeTranslationVisitor.ForMethodEnter
,Advice.Dispatcher.Inlining.CodeTranslationVisitor.ForMethodExit
- Enclosing interface:
- Advice.Dispatcher.SuppressionHandler
public static interface Advice.Dispatcher.SuppressionHandler.ReturnValueProducer
A producer for a default return value if this is applicable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onDefaultValue(org.objectweb.asm.MethodVisitor methodVisitor)
Instructs this return value producer to assure the production of a default value for the return type of the currently handled method.
-
-
-
Method Detail
-
onDefaultValue
void onDefaultValue(org.objectweb.asm.MethodVisitor methodVisitor)
Instructs this return value producer to assure the production of a default value for the return type of the currently handled method.- Parameters:
methodVisitor
- The method visitor to write the default value to.
-
-