Class ImplementedMethods

java.lang.Object
gw.gosudoc.com.sun.tools.doclets.internal.toolkit.util.ImplementedMethods

@Deprecated public class ImplementedMethods extends Object
Deprecated.
For a given class method, build an array of interface methods which it implements.

This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.

Author:
Atul M Dambalkar
  • Constructor Details

  • Method Details

    • build

      public MethodDoc[] build(boolean sort)
      Deprecated.
      Return the array of interface methods which the method passed in the constructor is implementing. The search/build order is as follows:
       1. Search in all the immediate interfaces which this method's class is
          implementing. Do it recursively for the superinterfaces as well.
       2. Traverse all the superclasses and search recursively in the
          interfaces which those superclasses implement.
      
      Returns:
      MethodDoc[] Array of implemented methods.
    • build

      public MethodDoc[] build()
      Deprecated.
    • getMethodHolder

      public Type getMethodHolder(MethodDoc methodDoc)
      Deprecated.