模块  jdk.javadoc
软件包  com.sun.javadoc

Interface ProgramElementDoc

    • 方法详细信息

      • containingClass

        ClassDoc containingClass()
        Deprecated, for removal: This API element is subject to removal in a future version.
        获取此程序元素的包含类或接口。
        结果
        包含类或接口的此元素的ClassDoc。 如果这是顶级类或接口,则返回null。
      • containingPackage

        PackageDoc containingPackage()
        Deprecated, for removal: This API element is subject to removal in a future version.
        获取包含此程序元素的包。
        结果
        包含此包的元素的PackageDoc。 如果在未命名的包中,此PackageDoc将具有名称“”。
      • qualifiedName

        String qualifiedName()
        Deprecated, for removal: This API element is subject to removal in a future version.
        获取此程序元素的完全限定名称。 例如,对于类java.util.Hashtable ,返回“java.util.Hashtable”。

        对于未命名包中的类Foo中的方法bar() ,返回“Foo.bar”。

        结果
        程序元素的限定名称为String。
      • modifierSpecifier

        int modifierSpecifier()
        Deprecated, for removal: This API element is subject to removal in a future version.
        获取修饰符说明符整数。
        结果
        获取修饰符说明符整数。
        另请参见:
        Modifier
      • modifiers

        String modifiers()
        Deprecated, for removal: This API element is subject to removal in a future version.
        获取修饰符字符串。 例如,对于:
          public abstract int foo() { ... } 
        返回“公共摘要”。 注释不包括在内。
        结果
        “公共抽象”。
      • annotations

        AnnotationDesc[] annotations()
        Deprecated, for removal: This API element is subject to removal in a future version.
        获取此程序元素的注释。 如果没有,则返回一个空数组。
        结果
        该程序元素的注释。
        从以下版本开始:
        1.5
      • isPublic

        boolean isPublic()
        Deprecated, for removal: This API element is subject to removal in a future version.
        如果此程序元素是公共的,则返回true。
        结果
        如果此程序元素是公共的,则为true。
      • isProtected

        boolean isProtected()
        Deprecated, for removal: This API element is subject to removal in a future version.
        如果此程序元素受保护,则返回true。
        结果
        如果此程序元素受到保护,则为true。
      • isPrivate

        boolean isPrivate()
        Deprecated, for removal: This API element is subject to removal in a future version.
        如果此程序元素是私有的,则返回true。
        结果
        如果此程序元素是私有的,则为true。
      • isPackagePrivate

        boolean isPackagePrivate()
        Deprecated, for removal: This API element is subject to removal in a future version.
        如果此程序元素是包私有,则返回true。
        结果
        如果此程序元素是包私有,则返回true。
      • isStatic

        boolean isStatic()
        Deprecated, for removal: This API element is subject to removal in a future version.
        如果此程序元素是静态的,则返回true。
        结果
        如果此程序元素是静态的,则为true。
      • isFinal

        boolean isFinal()
        Deprecated, for removal: This API element is subject to removal in a future version.
        如果此程序元素是final,则返回true。
        结果
        如果此程序元素是最终的,则为true。