Class Advice.ArgumentHandler.ForAdvice.Default

    • Field Detail

      • instrumentedMethod

        protected final MethodDescription instrumentedMethod
        The instrumented method.
      • exitType

        protected final TypeDefinition exitType
        The enter type or void if no enter type is defined.
      • namedTypes

        protected final java.util.TreeMap<java.lang.String,​TypeDefinition> namedTypes
        A mapping of all available local variables by their name to their type.
    • Constructor Detail

      • Default

        protected Default​(MethodDescription instrumentedMethod,
                          MethodDescription adviceMethod,
                          TypeDefinition exitType,
                          java.util.TreeMap<java.lang.String,​TypeDefinition> namedTypes)
        Creates a new argument handler for an enter advice.
        Parameters:
        instrumentedMethod - The instrumented method.
        adviceMethod - The advice method.
        exitType - The exit type or void if no exit type is defined.
        namedTypes - A mapping of all available local variables by their name to their type.
    • Method Detail

      • argument

        public int argument​(int offset)
        Resolves an offset relative to an offset of the instrumented method.
        Specified by:
        argument in interface Advice.ArgumentHandler
        Parameters:
        offset - The offset to resolve.
        Returns:
        The resolved offset.
      • exit

        public int exit()
        Resolves the offset of the exit value of the exit advice.
        Specified by:
        exit in interface Advice.ArgumentHandler
        Returns:
        The offset of the exit value.
      • named

        public int named​(java.lang.String name)
        Returns the offset of the local variable with the given name.
        Specified by:
        named in interface Advice.ArgumentHandler
        Parameters:
        name - The name of the local variable being accessed.
        Returns:
        The named variable's offset.
      • enter

        public int enter()
        Resolves the offset of the enter value of the enter advice.
        Specified by:
        enter in interface Advice.ArgumentHandler
        Returns:
        The offset of the enter value.