jdk.javadoc.doclet
.
For more information, see the Migration Guide in the documentation for that package.@Deprecated public interface ExecutableMemberDoc extends MemberDoc
Modifier and Type | Method and Description |
---|---|
String |
flatSignature()
Deprecated.
get flat signature.
|
boolean |
isNative()
Deprecated.
Return true if this method is native
|
boolean |
isSynchronized()
Deprecated.
Return true if this method is synchronized
|
boolean |
isVarArgs()
Deprecated.
Return true if this method was declared to take a variable number
of arguments.
|
Parameter[] |
parameters()
Deprecated.
Get argument information.
|
ParamTag[] |
paramTags()
Deprecated.
Return the param tags in this method, excluding the type
parameter tags.
|
Type |
receiverType()
Deprecated.
Get the receiver type of this executable element.
|
String |
signature()
Deprecated.
Get the signature.
|
ClassDoc[] |
thrownExceptions()
Deprecated.
Return exceptions this method or constructor throws.
|
Type[] |
thrownExceptionTypes()
Deprecated.
Return exceptions this method or constructor throws.
|
ThrowsTag[] |
throwsTags()
Deprecated.
Return the throws tags in this method.
|
TypeVariable[] |
typeParameters()
Deprecated.
Return the formal type parameters of this method or constructor.
|
ParamTag[] |
typeParamTags()
Deprecated.
Return the type parameter tags in this method.
|
commentText, compareTo, firstSentenceTags, getRawCommentText, inlineTags, isAnnotationType, isAnnotationTypeElement, isClass, isConstructor, isEnum, isEnumConstant, isError, isException, isField, isIncluded, isInterface, isMethod, isOrdinaryClass, name, position, seeTags, setRawCommentText, tags, tags
isSynthetic
annotations, containingClass, containingPackage, isFinal, isPackagePrivate, isPrivate, isProtected, isPublic, isStatic, modifiers, modifierSpecifier, qualifiedName
ClassDoc[] thrownExceptions()
ClassDoc
of its erasure.
The thrownExceptions
method cannot
accommodate certain generic type constructs. The
thrownExceptionTypes
method should be used
instead.
thrownExceptionTypes()
Type[] thrownExceptionTypes()
ClassDoc
or a
TypeVariable
.boolean isNative()
boolean isSynchronized()
boolean isVarArgs()
Parameter[] parameters()
Parameter
Type receiverType()
ThrowsTag[] throwsTags()
@exception
and @throws
tags.ParamTag[] paramTags()
@param
tags
corresponding to the parameters of this method.ParamTag[] typeParamTags()
@param
tags
corresponding to the type parameters of this method.String signature()
mymethod(String x, int y)
,
it will return (java.lang.String,int)
.String flatSignature()
mymethod(String x, int y)
,
it will return (String, int)
.TypeVariable[] typeParameters()
Submit a bug or feature
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2016, Oracle and/or its affiliates. 500 Oracle Parkway
Redwood Shores, CA 94065 USA. All rights reserved.
DRAFT 9-ea+126