本文整理匯總了Java中org.eclipse.core.resources.IWorkspaceRoot.findContainersForLocationURI方法的典型用法代碼示例。如果您正苦於以下問題:Java IWorkspaceRoot.findContainersForLocationURI方法的具體用法?Java IWorkspaceRoot.findContainersForLocationURI怎麽用?Java IWorkspaceRoot.findContainersForLocationURI使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.eclipse.core.resources.IWorkspaceRoot
的用法示例。
在下文中一共展示了IWorkspaceRoot.findContainersForLocationURI方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: determineContainersToCheck
import org.eclipse.core.resources.IWorkspaceRoot; //導入方法依賴的package包/類
/**
* Given a base URI, figure out which {@link IFolder}, if any, it refers to.
*
* @param baseURI
* to find the folder(s) for; must not be {@code null}
* @return an array of all folders mapping to that URI, or an empty array if none do.
*/
private static IContainer[] determineContainersToCheck(final URI baseURI) {
Preconditions.checkNotNull(baseURI);
IContainer[] result = {};
if (baseURI.isPlatformResource() || baseURI.isFile()) {
IWorkspaceRoot workspace = EcorePlugin.getWorkspaceRoot();
if (workspace != null) {
if (baseURI.isFile()) {
result = workspace.findContainersForLocationURI(java.net.URI.create(baseURI.toString()));
} else {
// Must be a platform/resource URI
IPath platformPath = new Path(baseURI.toPlatformString(true));
IFolder folder = workspace.getFolder(platformPath);
if (folder != null) {
result = new IContainer[] {folder};
}
}
}
}
return result;
}
示例2: getOverlappingProjectName
import org.eclipse.core.resources.IWorkspaceRoot; //導入方法依賴的package包/類
/**
* Returns the name of a {@link IProject} with a location that includes targetDirectory. Returns null if there is no
* such {@link IProject}.
*
* @param targetDirectory
* the path of the directory to check.
* @return the overlapping project name or <code>null</code>
*/
private String getOverlappingProjectName(String targetDirectory) {
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
IPath testPath = new Path(targetDirectory);
IContainer[] containers = root.findContainersForLocationURI(testPath.makeAbsolute().toFile().toURI());
if (containers.length > 0) {
return containers[0].getProject().getName();
}
return null;
}