Uses of Interface
org.eclipse.jdt.core.dom.IPackageBinding
Packages that use IPackageBinding
Package
Description
The Java DOM/AST is the set of classes that model the source code of a Java program
as a structured document.
The Java DOM/AST rewrite is the set of classes that are used to make changes to an existing DOM/AST tree.
-
Uses of IPackageBinding in org.eclipse.jdt.core.dom
Methods in org.eclipse.jdt.core.dom that return IPackageBindingModifier and TypeMethodDescriptionIModuleBinding.getExportedPackages()Returns all exported packages.IModuleBinding.getOpenedPackages()Returns all opened packages.ITypeBinding.getPackage()Returns the binding for the package in which this type is declared.PackageDeclaration.resolveBinding()Resolves and returns the binding for the package declared in this package declaration.Methods in org.eclipse.jdt.core.dom with parameters of type IPackageBindingModifier and TypeMethodDescriptionString[]IModuleBinding.getExportedTo(IPackageBinding packageBinding) If this module exports the given package to specific modules, returns the array of names of modules, otherwise returns an empty array.String[]IModuleBinding.getOpenedTo(IPackageBinding packageBinding) If this module opens the given package to specific modules, returns the array of names of modules, otherwise returns an empty array. -
Uses of IPackageBinding in org.eclipse.jdt.core.dom.rewrite
Methods in org.eclipse.jdt.core.dom.rewrite that return types with arguments of type IPackageBindingModifier and TypeMethodDescriptionstatic List<IPackageBinding> ImportRewrite.getPackageBindingsForModule(IModuleBinding binding, IJavaProject project) Calculate the list of package names that are exported, explicitly or implicitly, by a module.