热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

org.eclipse.emf.common.util.URI.isPlatformResource()方法的使用及代码示例

本文整理了Java中org.eclipse.emf.common.util.URI.isPlatformResource()方法的一些代码示例,展示了URI

本文整理了Java中org.eclipse.emf.common.util.URI.isPlatformResource()方法的一些代码示例,展示了URI.isPlatformResource()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。URI.isPlatformResource()方法的具体详情如下:
包路径:org.eclipse.emf.common.util.URI
类名称:URI
方法名:isPlatformResource

URI.isPlatformResource介绍

[英]Returns true if this is a platform resource URI, that is, a #isPlatform whose first segment is "resource"; false is returned otherwise.
[中]如果这是平台资源URI,即第一段为“资源”的#isPlatform,则返回true;否则返回false

代码示例

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.emf.common

@Override
public boolean isPlatformResource()
{
return uri.isPlatformResource();
}

代码示例来源:origin: org.eclipse.emf/org.eclipse.emf.ecore

@Override
public boolean canHandle(URI uri)
{
return uri.isPlatformResource();
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.emf.ecore

@Override
public boolean canHandle(URI uri)
{
return uri.isPlatformResource();
}

代码示例来源:origin: fr.inria.atlanmod.neoemf/neoemf-core

@Override
public boolean isPlatformResource() {
return internalUri.isPlatformResource();
}

代码示例来源:origin: atlanmod/NeoEMF

@Override
public boolean isPlatformResource() {
return base.isPlatformResource();
}

代码示例来源:origin: org.eclipse.xtext/org.eclipse.xtext.common.types

/**
* @since 2.9
*/
protected boolean isProjectLocal(URI uri, final String encodedProjectName) {
if (uri == null || uri.segmentCount() <2 || !uri.isPlatformResource())
return false;
else
return !uri.segment(1).equals(encodedProjectName);
}

代码示例来源:origin: org.eclipse/xtext

public CharSequence wrapWithTraceData(CharSequence sequence, URI originResourceURI, int originOffset, int originLength, int originLineNumber, int originEndLineNumber) {
if (!originResourceURI.isPlatformResource()) {
throw new IllegalArgumentException("URI has to be a platform resource uri but was: " + originResourceURI+ ". Use #wrapWithTraceData(CharSequence, URI, String, int, int) instead.");
}
return wrapWithTraceData(sequence, originResourceURI, originResourceURI.segment(1), originOffset, originLength, originLineNumber, originEndLineNumber);
}

代码示例来源:origin: org.eclipse.xtext/ui

@SuppressWarnings("unchecked")
public T getAdapter(Class adapterType) {
URI uri = resource.getURI();
if ((adapterType == IFile.class || adapterType == IResource.class) && uri.isPlatformResource()) {
return (T) ResourcesPlugin.getWorkspace().getRoot().getFile(new Path(uri.toPlatformString(true)));
}
return null;
}

代码示例来源:origin: com.reprezen.rapidml/com.reprezen.rapidml

public static void validateFile(URI modelPath) {
if (modelPath.isPlatformResource()) {
IFile file;
try {
file = ResourcesPlugin.getWorkspace().getRoot().getFile(new Path(modelPath.toPlatformString(true)));
} catch (Exception e) {
throw new RuntimeException(format("The model file '%s' does not exist.", modelPath));
}
if (file == null || !file.exists()) {
throw new RuntimeException(format("The model file '%s' does not exist.", modelPath));
}
if (file.getType() != IResource.FILE) {
throw new RuntimeException(format("The '%s' path is not a file.", modelPath));
}
}
}

代码示例来源:origin: org.codehaus.openxma/dsl-generator

private File getOutletFolder(URI uri) {
if (uri.isPlatformResource()) {
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
IFolder folder = root.getFolder((IPath) toPath(uri));
return new File(folder.getLocationURI());
}
return new File(uri.toFileString());
}

代码示例来源:origin: org.codehaus.openxma/dsl-generator

protected String toRelativePath(URI uri) {
String relativePath = null;
if (uri.isPlatformResource()) {
IFolder folder = EcorePlugin.getWorkspaceRoot().getFolder((IPath) toPath(uri));
relativePath = folder.getProjectRelativePath().toString() + File.separator;
} else {
relativePath = new File(getConfiguration().getProjectFolder().toFileString()).toURI().relativize(
new File(uri.toFileString()).toURI()).getPath();
relativePath = relativePath + File.separator;
}
return relativePath;
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.emf.edit

/**
* Returns whether to expect that the resource corresponding to the given URI form will be read only.
* @deprecated this method is no longer called by {@link #isReadOnly(Resource)}
*/
@Deprecated
protected boolean isReadOnlyURI(URI uri)
{
if (uri.isArchive())
{
return isReadOnlyURI(URI.createURI(uri.authority()));
}
return !uri.isPlatformResource() && (uri.isRelative() || !uri.isFile());
}

代码示例来源:origin: org.codehaus.openxma/dsl-generator

private Outlet createOutlet(String name, URI uri, boolean overwrite, boolean required, PostProcessor postProcessor) {
Outlet outlet = null;
if (uri.isPlatformResource()) {
outlet = createResourceOutlet(name, uri, overwrite, required);
} else if (uri.isFile()) {
outlet = createOutlet(name, uri, overwrite, required);
}
if (outlet != null && postProcessor != null) {
outlet.addPostprocessor(postProcessor);
}
return outlet;
}

代码示例来源:origin: org.eclipse.viatra/org.eclipse.viatra.query.patternlanguage.emf

@Override
public boolean isStandaloneFileURI(EObject context, URI uri) {
if (uri.isPlatformResource() && context.eResource() != null) {
IProjectConfig project = projectConfigurationProvider.getProjectConfig(context.eResource().getResourceSet());
if (project != null) {
return project.findSourceFolderContaining(uri) == null;
}
}
return true;
}
}

代码示例来源:origin: org.eclipse.xtext/ui

private IProject getProject(Resource resource) {
URI uri = resource.getURI();
if (uri.isPlatformResource()) {
final IProject project = getWorkspaceRoot().getProject(uri.segment(1));
if (project.isAccessible())
return project;
}
return null;
}

代码示例来源:origin: org.eclipse.xtext/ui

public Iterable> getStorages(URI uri) {
if (!uri.isPlatformResource()) {
// support storage lookup by absolute file URI as it is possibly resolved by importURI references
if (uri.isFile()) {
IPath path = new Path(uri.toFileString());
if (path.isAbsolute()) {
IFile file = getWorkspaceRoot().getFileForLocation(path);
return getStorages(file);
}
}
return emptySet();
}
IFile file = getWorkspaceRoot().getFile(new Path(uri.toPlatformString(true)));
return getStorages(file);
}

代码示例来源:origin: org.eclipse.xtext/ui

protected boolean isValidTargetFile(Resource resource, StatusWrapper status) {
IFile targetFile = projectUtil.findFileStorage(resource.getURI(), true);
if (targetFile != null)
return true;
String path = (resource.getURI().isPlatformResource())
? resource.getURI().toPlatformString(true)
: resource.getURI().toString();
status.add(FATAL, "Rename target file '" + path + "' cannot be accessed", resource.getURI());
return false;
}

代码示例来源:origin: org.codehaus.openxma/dsl-generator

private File getProjectDirectoryFile() {
if (projectDirectory == null) {
if (getConfiguration().getProjectFolder().isPlatformResource()) {
IProject project = EcorePlugin.getWorkspaceRoot().getProject(
getConfiguration().getProjectFolder().lastSegment());
projectDirectory = new File(project.getLocationURI());
} else {
projectDirectory = new File(getConfiguration().getProjectFolder().toFileString());
}
}
return projectDirectory;
}

代码示例来源:origin: org.eclipse/xtext

/**
* @return the resources uri in the normalized form or as is if it is a platform:/resource URI.
* @since 2.4
*/
public static URI getPlatformResourceOrNormalizedURI(Resource resource) {
URI rawURI = resource.getURI();
if (rawURI.isPlatformResource()) {
return rawURI;
}
if(resource.getResourceSet() != null) {
return resource.getResourceSet().getURIConverter().normalize(rawURI);
} else {
return URIConverter.INSTANCE.normalize(rawURI);
}
}

代码示例来源:origin: org.eclipse.xtext/ui

/**
* Produces hyperlinks for the given {@code region} that point to the referenced {@code target}.
*/
public void createHyperlinksTo(XtextResource from, Region region, EObject target, IHyperlinkAcceptor acceptor) {
final URIConverter uriCOnverter= from.getResourceSet().getURIConverter();
final String hyperlinkText = labelProvider.getText(target);
final URI uri = EcoreUtil.getURI(target);
final URI normalized = uri.isPlatformResource() ? uri : uriConverter.normalize(uri);
XtextHyperlink result = hyperlinkProvider.get();
result.setHyperlinkRegion(region);
result.setURI(normalized);
result.setHyperlinkText(hyperlinkText);
acceptor.accept(result);
}

推荐阅读
  • 对象自省自省在计算机编程领域里,是指在运行时判断一个对象的类型和能力。dir能够返回一个列表,列举了一个对象所拥有的属性和方法。my_list[ ... [详细]
  • PHP 过滤器详解
    本文深入探讨了 PHP 中的过滤器机制,包括常见的 $_SERVER 变量、filter_has_var() 函数、filter_id() 函数、filter_input() 函数及其数组形式、filter_list() 函数以及 filter_var() 和其数组形式。同时,详细介绍了各种过滤器的用途和用法。 ... [详细]
  • 本文详细介绍了 org.apache.commons.io.IOCase 类中的 checkCompareTo() 方法,通过多个代码示例展示其在不同场景下的使用方法。 ... [详细]
  • This pull request introduces the ability to provide comprehensive paragraph configurations directly within the Create Note and Create Paragraph REST endpoints, reducing the need for additional configuration calls. ... [详细]
  • 本文介绍如何使用 Android 的 Canvas 和 View 组件创建一个简单的绘图板应用程序,支持触摸绘画和保存图片功能。 ... [详细]
  • 利用决策树预测NBA比赛胜负的Python数据挖掘实践
    本文通过使用2013-14赛季NBA赛程与结果数据集以及2013年NBA排名数据,结合《Python数据挖掘入门与实践》一书中的方法,展示如何应用决策树算法进行比赛胜负预测。我们将详细讲解数据预处理、特征工程及模型评估等关键步骤。 ... [详细]
  • 本文详细解析了Java中hashCode()和equals()方法的实现原理及其在哈希表结构中的应用,探讨了两者之间的关系及其实现时需要注意的问题。 ... [详细]
  • 在编译BSP包过程中,遇到了一个与 'gets' 函数相关的编译错误。该问题通常发生在较新的编译环境中,由于 'gets' 函数已被弃用并视为安全漏洞。本文将详细介绍如何通过修改源代码和配置文件来解决这一问题。 ... [详细]
  • 本文深入探讨了HTTP请求和响应对象的使用,详细介绍了如何通过响应对象向客户端发送数据、处理中文乱码问题以及常见的HTTP状态码。此外,还涵盖了文件下载、请求重定向、请求转发等高级功能。 ... [详细]
  • 本文详细介绍了 iBatis.NET 中的 Iterate 元素,它用于遍历集合并重复生成每个项目的主体内容。通过该元素,可以实现类似于 foreach 的功能,尽管 iBatis.NET 并未直接提供 foreach 标签。 ... [详细]
  • 深入解析Redis内存对象模型
    本文详细介绍了Redis内存对象模型的关键知识点,包括内存统计、内存分配、数据存储细节及优化策略。通过实际案例和专业分析,帮助读者全面理解Redis内存管理机制。 ... [详细]
  • 本文介绍如何在SQL Server中创建动态SQL存储过程,并提供详细的代码实例和解释。通过这种方式,可以更灵活地处理查询条件和参数。 ... [详细]
  • 本文介绍了如何在多线程环境中实现异步任务的事务控制,确保任务执行的一致性和可靠性。通过使用计数器和异常标记字段,系统能够准确判断所有异步线程的执行结果,并根据结果决定是否回滚或提交事务。 ... [详细]
  • Nginx 反向代理与负载均衡实验
    本实验旨在通过配置 Nginx 实现反向代理和负载均衡,确保从北京本地代理服务器访问上海的 Web 服务器时,能够依次显示红、黄、绿三种颜色页面以验证负载均衡效果。 ... [详细]
  • yikesnews第11期:微软Office两个0day和一个提权0day
    点击阅读原文可点击链接根据法国大选被黑客干扰,发送了带漏洞的文档Trumps_Attack_on_Syria_English.docx而此漏洞与ESET&FireEy ... [详细]
author-avatar
wonderoil
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有