Methods Summary |
---|
public boolean | isAbstract()Return true if this method is abstract
|
public com.sun.javadoc.ClassDoc | overriddenClass()Return the class containing the method that this method overrides.
The overriddenClass method cannot
accommodate certain generic type constructs. The
overriddenType method should be used instead.
|
public com.sun.javadoc.MethodDoc | overriddenMethod()Return the method that this method overrides.
|
public com.sun.javadoc.Type | overriddenType()Return the type containing the method that this method overrides.
It may be a ClassDoc or a ParameterizedType .
|
public boolean | overrides(com.sun.javadoc.MethodDoc meth)Tests whether this method overrides another.
The overridden method may be one declared in a superclass or
a superinterface (unlike {@link #overriddenMethod()}).
When a non-abstract method overrides an abstract one, it is
also said to implement the other.
|
public com.sun.javadoc.Type | returnType()Get return type.
|