Uses of Interface
org.eclipse.jdt.core.IPackageFragmentRoot
-
Packages that use IPackageFragmentRoot Package Description org.eclipse.jdt.core The Java model is the set of classes that model the objects associated with creating, editing, and building a Java program.org.eclipse.jdt.core.refactoring.descriptors Application programming interface to access Java refactorings provided by JDT.org.eclipse.jdt.core.search Provides support for searching the workspace Java elements that match a particular description.org.eclipse.jdt.launching.sourcelookup Application programming interfaces and classes for source lookup.org.eclipse.jdt.launching.sourcelookup.advanced Provides advanced source lookup support for the Java debugger.org.eclipse.jdt.launching.sourcelookup.containers Provides source lookup support for the Java debugger.org.eclipse.jdt.ui Application programming interfaces for interaction with the Eclipse Java User Interface.org.eclipse.jdt.ui.refactoring Application programming interfaces for rename refactorings.org.eclipse.jdt.ui.wizards Application programming interfaces for interaction with the Eclipse Java User Interface wizards. -
-
Uses of IPackageFragmentRoot in org.eclipse.jdt.core
Methods in org.eclipse.jdt.core that return IPackageFragmentRoot Modifier and Type Method Description static IPackageFragmentRootJavaCore. createJarPackageFragmentRootFrom(IFile file)Creates and returns a handle for the given JAR file.IPackageFragmentRootIJavaProject. findPackageFragmentRoot(IPath path)Returns the existing package fragment root on this project's classpath whose path matches the given (absolute) path, ornullif one does not exist.IPackageFragmentRoot[]IJavaProject. findPackageFragmentRoots(IClasspathEntry entry)Returns the existing package fragment roots identified by the given entry.IPackageFragmentRoot[]IJavaProject. findUnfilteredPackageFragmentRoots(IClasspathEntry entry)In a Java 9 project, a classpath entry can be filtered using aIClasspathAttribute.LIMIT_MODULESattribute, otherwise for an unnamed module a default set of roots is used as defined in JEP 261.IPackageFragmentRoot[]IJavaProject. getAllPackageFragmentRoots()Returns all of the existing package fragment roots that exist on the classpath, in the order they are defined by the classpath.IPackageFragmentRootIJarEntryResource. getPackageFragmentRoot()Returns the package fragment root this jar entry resource belongs to.IPackageFragmentRootIJavaProject. getPackageFragmentRoot(String externalLibraryPath)Returns a package fragment root for an external library (a ZIP archive - e.g. a.jar, a.zipfile, etc. - or - since 3.4 - a class folder) at the specified file system path.IPackageFragmentRootIJavaProject. getPackageFragmentRoot(IResource resource)Returns a package fragment root for the given resource, which must either be a folder representing the top of a package hierarchy, or a ZIP archive (e.g. a.jar, a.zipfile, etc.)IPackageFragmentRoot[]IJavaProject. getPackageFragmentRoots()Returns all of the package fragment roots contained in this project, identified on this project's resolved classpath.IPackageFragmentRoot[]IJavaProject. getPackageFragmentRoots(IClasspathEntry entry)Deprecated.Method parameters in org.eclipse.jdt.core with type arguments of type IPackageFragmentRoot Modifier and Type Method Description static List<String>JavaCore. defaultRootModules(Iterable<IPackageFragmentRoot> allSystemRoots)Filter the given set of system roots by the rules for root modules from JEP 261. -
Uses of IPackageFragmentRoot in org.eclipse.jdt.core.refactoring.descriptors
Methods in org.eclipse.jdt.core.refactoring.descriptors with parameters of type IPackageFragmentRoot Modifier and Type Method Description voidMoveDescriptor. setMovePackageFragmentRoots(IPackageFragmentRoot[] roots)Sets the package fragment roots to move. -
Uses of IPackageFragmentRoot in org.eclipse.jdt.core.search
Methods in org.eclipse.jdt.core.search that return IPackageFragmentRoot Modifier and Type Method Description IPackageFragmentRootTypeNameMatch. getPackageFragmentRoot()Returns the package fragment root of the stored type. -
Uses of IPackageFragmentRoot in org.eclipse.jdt.launching.sourcelookup
Methods in org.eclipse.jdt.launching.sourcelookup that return IPackageFragmentRoot Modifier and Type Method Description IPackageFragmentRootPackageFragmentRootSourceLocation. getPackageFragmentRoot()Deprecated.Returns the package fragment root associated with this source location, ornullif noneConstructors in org.eclipse.jdt.launching.sourcelookup with parameters of type IPackageFragmentRoot Constructor Description PackageFragmentRootSourceLocation(IPackageFragmentRoot root)Deprecated.Creates a source location on the given package fragment root. -
Uses of IPackageFragmentRoot in org.eclipse.jdt.launching.sourcelookup.advanced
Methods in org.eclipse.jdt.launching.sourcelookup.advanced that return types with arguments of type IPackageFragmentRoot Modifier and Type Method Description static Map<File,IPackageFragmentRoot>AdvancedSourceLookup. getClasspath(IJavaProject project)Method parameters in org.eclipse.jdt.launching.sourcelookup.advanced with type arguments of type IPackageFragmentRoot Modifier and Type Method Description voidIWorkspaceProjectDescriber.IJavaProjectSourceDescription. addDependencies(Map<File,IPackageFragmentRoot> dependencies)Adds runtime classes location of project dependencies and their corresponding package fragment roots, typically for standard java application, this is dependency jar or classes directory for equinox, this is dependency bundle location -
Uses of IPackageFragmentRoot in org.eclipse.jdt.launching.sourcelookup.containers
Methods in org.eclipse.jdt.launching.sourcelookup.containers that return IPackageFragmentRoot Modifier and Type Method Description IPackageFragmentRootPackageFragmentRootSourceContainer. getPackageFragmentRoot()Returns the package fragment root this container searches for source.Constructors in org.eclipse.jdt.launching.sourcelookup.containers with parameters of type IPackageFragmentRoot Constructor Description PackageFragmentRootSourceContainer(IPackageFragmentRoot root)Constructs a new package fragment root source container on the given root. -
Uses of IPackageFragmentRoot in org.eclipse.jdt.ui
Methods in org.eclipse.jdt.ui with parameters of type IPackageFragmentRoot Modifier and Type Method Description static SelectionDialogJavaUI. createPackageDialog(Shell parent, IPackageFragmentRoot root)Creates a selection dialog that lists all packages under the given package fragment root.static SelectionDialogJavaUI. createPackageDialog(Shell parent, IPackageFragmentRoot root, String filter)Creates a selection dialog that lists all packages under the given package fragment root.protected Object[]StandardJavaElementContentProvider. getPackageFragmentRootContent(IPackageFragmentRoot root)Evaluates all children of a givenIPackageFragmentRoot.static voidJavaElementLabels. getPackageFragmentRootLabel(IPackageFragmentRoot root, long flags, StringBuffer buf)Appends the label for a package fragment root to aStringBuffer.static voidJavaElementLabels. getPackageFragmentRootLabel(IPackageFragmentRoot root, long flags, StyledString result)Appends the label for a package fragment root to aStyledString.protected booleanStandardJavaElementContentProvider. isProjectPackageFragmentRoot(IPackageFragmentRoot root)Tests if the package fragment root is located on the project.protected ObjectStandardJavaElementContentProvider. skipProjectPackageFragmentRoot(IPackageFragmentRoot root)Note: This method is for internal use only. -
Uses of IPackageFragmentRoot in org.eclipse.jdt.ui.refactoring
Methods in org.eclipse.jdt.ui.refactoring with parameters of type IPackageFragmentRoot Modifier and Type Method Description static RenameSupportRenameSupport. create(IPackageFragmentRoot root, String newName)Creates a new rename support for the givenIPackageFragmentRoot. -
Uses of IPackageFragmentRoot in org.eclipse.jdt.ui.wizards
Methods in org.eclipse.jdt.ui.wizards that return IPackageFragmentRoot Modifier and Type Method Description protected IPackageFragmentRootNewContainerWizardPage. chooseContainer()Opens a selection dialog that allows to select a source container.IPackageFragmentRootNewContainerWizardPage. getPackageFragmentRoot()Returns theIPackageFragmentRootthat corresponds to the current value of the source folder field.Methods in org.eclipse.jdt.ui.wizards with parameters of type IPackageFragmentRoot Modifier and Type Method Description voidNewContainerWizardPage. setPackageFragmentRoot(IPackageFragmentRoot root, boolean canBeModified)Sets the current source folder (model and text field) to the given package fragment root.
-