Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.compiler/share/classes/javax/lang/model/element/PackageElement.java
41161 views
1
/*
2
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
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é
38
* @see javax.lang.model.util.Elements#getPackageOf
39
* @since 1.6
40
*/
41
public interface PackageElement extends Element, QualifiedNameable {
42
/**
43
* {@return a {@linkplain javax.lang.model.type.NoType pseudo-type}
44
* for this package}
45
*
46
* @see javax.lang.model.type.NoType
47
* @see javax.lang.model.type.TypeKind#PACKAGE
48
*/
49
@Override
50
TypeMirror asType();
51
52
/**
53
* Returns the fully qualified name of this package. This is also
54
* known as the package's <i>canonical</i> name. For an
55
* {@linkplain #isUnnamed() unnamed package}, an <a
56
* href=Name.html#empty_name>empty name</a> is returned.
57
*
58
* @apiNote The fully qualified name of a named package that is
59
* not a subpackage of a named package is its simple name. The
60
* fully qualified name of a named package that is a subpackage of
61
* another named package consists of the fully qualified name of
62
* the containing package, followed by "{@code .}", followed by the simple
63
* (member) name of the subpackage.
64
*
65
* @return the fully qualified name of this package, or an
66
* empty name if this is an unnamed package
67
* @jls 6.7 Fully Qualified Names and Canonical Names
68
*/
69
Name getQualifiedName();
70
71
/**
72
* Returns the simple name of this package. For an {@linkplain
73
* #isUnnamed() unnamed package}, an <a
74
* href=Name.html#empty_name>empty name</a> is returned.
75
*
76
* @return the simple name of this package or an empty name if
77
* this is an unnamed package
78
*/
79
@Override
80
Name getSimpleName();
81
82
/**
83
* {@return the {@linkplain NestingKind#TOP_LEVEL top-level}
84
* classes and interfaces within this package} Note that
85
* subpackages are <em>not</em> considered to be enclosed by a
86
* package.
87
*/
88
@Override
89
List<? extends Element> getEnclosedElements();
90
91
/**
92
* {@return {@code true} if this is an unnamed package and {@code
93
* false} otherwise}
94
*
95
* @jls 7.4.2 Unnamed Packages
96
*/
97
boolean isUnnamed();
98
99
/**
100
* {@return the enclosing module if such a module exists; otherwise
101
* {@code null}}
102
*
103
* One situation where a module does not exist for a package is if
104
* the environment does not include modules, such as an annotation
105
* processing environment configured for a {@linkplain
106
* javax.annotation.processing.ProcessingEnvironment#getSourceVersion
107
* source version} without modules.
108
*
109
* @revised 9
110
*/
111
@Override
112
Element getEnclosingElement();
113
}
114
115