| javax.lang.model.element.PackageElement
PackageElement | public interface PackageElement extends Element(Code) | | Represents a package program element. Provides access to information
about the package and its members.
author: Joseph D. Darcy author: Scott Seligman author: Peter von der Ahé version: 1.12 07/05/05 See Also: javax.lang.model.util.Elements.getPackageOf since: 1.6 |
Method Summary | |
Name | getQualifiedName() Returns the fully qualified name of this package. | boolean | isUnnamed() Returns
true is this is an unnamed package and
false otherwise. |
getQualifiedName | Name getQualifiedName()(Code) | | Returns the fully qualified name of this package.
This is also known as the package's canonical name.
the fully qualified name of this package, or anempty name if this is an unnamed package |
isUnnamed | boolean isUnnamed()(Code) | | Returns
true is this is an unnamed package and
false otherwise.
true is this is an unnamed package and false otherwise |
|
|