Class MethodNameMatch

    • Constructor Summary

      Constructors 
      Constructor Description
      MethodNameMatch()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract int getAccessibility()
      Returns the accessibility of the declaring type of the method name match
      abstract IMethod getMethod()
      Returns a java model method handle.
      abstract int getModifiers()
      Returns the modifiers of the matched method.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MethodNameMatch

        public MethodNameMatch()
    • Method Detail

      • getModifiers

        public abstract int getModifiers()
        Returns the modifiers of the matched method.

        This is a handle-only method as neither Java Model nor classpath initialization is done while calling this method.

        Returns:
        the type modifiers
      • getMethod

        public abstract IMethod getMethod()
        Returns a java model method handle. This handle may exist or not, but is not supposed to be null.

        This is a handle-only method as neither Java Model nor classpath initializations are done while calling this method.

        Returns:
        the non-null handle on matched java model method.
        See Also:
        IMethod