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 Summary
Constructors Constructor Description ImplementedMethods(MethodDoc method, Configuration configuration)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description MethodDoc[]
build()
Deprecated.MethodDoc[]
build(boolean sort)
Deprecated.Return the array of interface methods which the method passed in the constructor is implementing.Type
getMethodHolder(MethodDoc methodDoc)
Deprecated.
-
-
-
Constructor Detail
-
ImplementedMethods
public ImplementedMethods(MethodDoc method, Configuration configuration)
Deprecated.
-
-
Method Detail
-
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.
-
-