Package org.eclipse.jdt.core.dom
Interface IPackageBinding
-
-
Field Summary
-
Fields inherited from interface org.eclipse.jdt.core.dom.IBinding
ANNOTATION, MEMBER_VALUE_PAIR, METHOD, MODULE, PACKAGE, TYPE, VARIABLE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default IModuleBindinggetModule()Returns the binding of the module associated with this package binding.StringgetName()Returns the name of the package represented by this binding.String[]getNameComponents()Returns the list of name component making up the name of the package represented by this binding.booleanisUnnamed()Returns whether this package is an unnamed package.-
Methods inherited from interface org.eclipse.jdt.core.dom.IBinding
equals, getAnnotations, getJavaElement, getKey, getKind, getModifiers, isDeprecated, isEqualTo, isRecovered, isSynthetic, toString
-
-
-
-
Method Detail
-
getName
String getName()
Returns the name of the package represented by this binding. For named packages, this is the fully qualified package name (using "." for separators). For unnamed packages, this is an empty string.
-
isUnnamed
boolean isUnnamed()
Returns whether this package is an unnamed package. See The Java Language Specification section 7.4.2 for details.- Returns:
trueif this is an unnamed package, andfalseotherwise
-
getNameComponents
String[] getNameComponents()
Returns the list of name component making up the name of the package represented by this binding. For example, for the package named "com.example.tool", this method returns {"com", "example", "tool"}. Returns the empty list for unnamed packages.- Returns:
- the name of the package represented by this binding, or the empty list for unnamed packages
-
getModule
default IModuleBinding getModule()
Returns the binding of the module associated with this package binding.- Returns:
- the binding of the module associated with this package, or
nullif none - Since:
- 3.14
-
-