Interface Binding

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int AFTER
      Specifies that a binding should be executed after its direct parent
      static int BEFORE
      Specifies that a binding should be executed before its direct parent.d
      static int OVERRIDE
      Specifies that a binding should totally override the execution of its direct parent.
    • Field Detail

      • AFTER

        static final int AFTER
        Specifies that a binding should be executed after its direct parent
        See Also:
        Constant Field Values
      • BEFORE

        static final int BEFORE
        Specifies that a binding should be executed before its direct parent.d
        See Also:
        Constant Field Values
      • OVERRIDE

        static final int OVERRIDE
        Specifies that a binding should totally override the execution of its direct parent.
        See Also:
        Constant Field Values
    • Method Detail

      • getTarget

        QName getTarget()
        Returns:
        The qualified name of the target for the binding.
      • getType

        Class<?> getType()
        Returns:
        The java type this binding maps to.
      • getExecutionMode

        int getExecutionMode()
        Returns:
        The execution mode of the binding, one of the constants AFTER, BEFORE, or OVERRIDE.
        See Also:
        AFTER, BEFORE, OVERRIDE