IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
 
[Sommaire]  [Top 50]  [F.A.Q.]  [ Java SE ]  [ Java EE ]  [Javadoc standard]  [Contact]
[ 1.4.2 ]  [ 5.0 ]  [ 6.0
Rechercher   
Dans
Options   sensible à la casse
étendre la recherche aux descriptions
Préférences
fr en 
 
Moteurs de recherche
JavaTM 2 Platform Std. Ed. v1.6.0

javax.lang.model.element
Interface PackageElement

All Superinterfaces:
Element

public interface PackageElement
extends Element

Represents a package program element. Provides access to information about the package and its members.

Since:
1.6
See Also:
Elements.getPackageOf(javax.lang.model.element.Element)

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.
 
Methods inherited from interface javax.lang.model.element.Element
accept, asType, equals, getAnnotation, getAnnotationMirrors, getEnclosedElements, getEnclosingElement, getKind, getModifiers, getSimpleName, hashCode
 

Method Detail

getQualifiedName

Name getQualifiedName()
Returns the fully qualified name of this package. This is also known as the package's canonical name.

Returns:
the fully qualified name of this package, or an empty name if this is an unnamed package
See The Java Language Specification, Third Edition:
6.7 Fully Qualified Names and Canonical Names

isUnnamed

boolean isUnnamed()
Returns true is this is an unnamed package and false otherwise.

Returns:
true is this is an unnamed package and false otherwise
See The Java Language Specification, Third Edition:
7.4.2 Unnamed Packages

Copyright 2003 Sun Microsystems, Inc. All rights reserved