Interface UnpickV2Reader.TargetMethodDefinitionVisitor

Enclosing class:
UnpickV2Reader

public static interface UnpickV2Reader.TargetMethodDefinitionVisitor
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    Visits the end of the method definition.
    default void
    visitParameterGroupDefinition(int parameterIndex, String group)
    Visits a parameter group definition (start token param).
    default void
    Visits a return group definition (start token return).
  • Method Details

    • visitParameterGroupDefinition

      default void visitParameterGroupDefinition(int parameterIndex, String group)
      Visits a parameter group definition (start token param).
      Parameters:
      parameterIndex - the index of the parameter
      group - the id of the constant group
    • visitReturnGroupDefinition

      default void visitReturnGroupDefinition(String group)
      Visits a return group definition (start token return).
      Parameters:
      group - the id of the constant group
    • endVisit

      default void endVisit()
      Visits the end of the method definition. This is the last method called.