< prev index next >

src/java.compiler/share/classes/javax/lang/model/element/PackageElement.java

Print this page

        

*** 40,59 **** public interface PackageElement extends Element, QualifiedNameable { /** * Returns the fully qualified name of this package. * This is also known as the package's <i>canonical</i> name. * * @return the fully qualified name of this package, or an * empty name if this is an unnamed package * @jls 6.7 Fully Qualified Names and Canonical Names */ Name getQualifiedName(); /** ! * Returns the simple name of this package. For an unnamed ! * package, an empty name is returned. * * @return the simple name of this package or an empty name if * this is an unnamed package */ @Override --- 40,60 ---- public interface PackageElement extends Element, QualifiedNameable { /** * Returns the fully qualified name of this package. * This is also known as the package's <i>canonical</i> name. + * For an {@linkplain #isUnnamed() unnamed package}, an empty name is returned. * * @return the fully qualified name of this package, or an * empty name if this is an unnamed package * @jls 6.7 Fully Qualified Names and Canonical Names */ Name getQualifiedName(); /** ! * Returns the simple name of this package. For an {@linkplain ! * #isUnnamed() unnamed package}, an empty name is returned. * * @return the simple name of this package or an empty name if * this is an unnamed package */ @Override
< prev index next >