< prev index next >

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

Print this page




   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.lang.model.element;
  27 
  28 import java.util.List;

  29 
  30 /**
  31  * Represents a package program element.  Provides access to information
  32  * about the package and its members.
  33  *
  34  * @author Joseph D. Darcy
  35  * @author Scott Seligman
  36  * @author Peter von der Ah&eacute;
  37  * @see javax.lang.model.util.Elements#getPackageOf
  38  * @since 1.6
  39  */
  40 public interface PackageElement extends Element, QualifiedNameable {






  41 
  42     /**
  43      * Returns the fully qualified name of this package.
  44      * This is also known as the package's <i>canonical</i> name.
  45      * For an {@linkplain #isUnnamed() unnamed package}, an empty name is returned.
  46      *
  47      * @apiNote The fully qualified name of a named package that is
  48      * not a subpackage of a named package is its simple name. The
  49      * fully qualified name of a named package that is a subpackage of
  50      * another named package consists of the fully qualified name of
  51      * the containing package, followed by "{@code .}", followed by the simple
  52      * (member) name of the subpackage.
  53      *
  54      * @return the fully qualified name of this package, or an
  55      * empty name if this is an unnamed package
  56      * @jls 6.7 Fully Qualified Names and Canonical Names
  57      */
  58     Name getQualifiedName();
  59 
  60     /**




   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.lang.model.element;
  27 
  28 import java.util.List;
  29 import javax.lang.model.type.TypeMirror;
  30 
  31 /**
  32  * Represents a package program element.  Provides access to information
  33  * about the package and its members.
  34  *
  35  * @author Joseph D. Darcy
  36  * @author Scott Seligman
  37  * @author Peter von der Ah&eacute;
  38  * @see javax.lang.model.util.Elements#getPackageOf
  39  * @since 1.6
  40  */
  41 public interface PackageElement extends Element, QualifiedNameable {
  42     /**
  43      * Returns a {@linkplain javax.lang.model.type.NoType pseudo-type} for this package.
  44      * @return a pseudo-type for this package
  45      */
  46     @Override
  47     TypeMirror asType();
  48 
  49     /**
  50      * Returns the fully qualified name of this package.
  51      * This is also known as the package's <i>canonical</i> name.
  52      * For an {@linkplain #isUnnamed() unnamed package}, an empty name is returned.
  53      *
  54      * @apiNote The fully qualified name of a named package that is
  55      * not a subpackage of a named package is its simple name. The
  56      * fully qualified name of a named package that is a subpackage of
  57      * another named package consists of the fully qualified name of
  58      * the containing package, followed by "{@code .}", followed by the simple
  59      * (member) name of the subpackage.
  60      *
  61      * @return the fully qualified name of this package, or an
  62      * empty name if this is an unnamed package
  63      * @jls 6.7 Fully Qualified Names and Canonical Names
  64      */
  65     Name getQualifiedName();
  66 
  67     /**


< prev index next >