热门标签 | 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);
}

推荐阅读
  • 本文详细介绍了Java中org.eclipse.ui.forms.widgets.ExpandableComposite类的addExpansionListener()方法,并提供了多个实际代码示例,帮助开发者更好地理解和使用该方法。这些示例来源于多个知名开源项目,具有很高的参考价值。 ... [详细]
  • 本文详细介绍了Java中org.neo4j.helpers.collection.Iterators.single()方法的功能、使用场景及代码示例,帮助开发者更好地理解和应用该方法。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 本文介绍如何使用阿里云的fastjson库解析包含时间戳、IP地址和参数等信息的JSON格式文本,并进行数据处理和保存。 ... [详细]
  • 深入解析 Apache Shiro 安全框架架构
    本文详细介绍了 Apache Shiro,一个强大且灵活的开源安全框架。Shiro 专注于简化身份验证、授权、会话管理和加密等复杂的安全操作,使开发者能够更轻松地保护应用程序。其核心目标是提供易于使用和理解的API,同时确保高度的安全性和灵活性。 ... [详细]
  • 本文探讨了在Java中实现系统托盘最小化的两种方法:使用SWT库和JDK6自带的功能。通过这两种方式,开发者可以创建跨平台的应用程序,使窗口能够最小化到系统托盘,并提供丰富的交互功能。 ... [详细]
  • 本文介绍如何在 Android 中通过代码模拟用户的点击和滑动操作,包括参数说明、事件生成及处理逻辑。详细解析了视图(View)对象、坐标偏移量以及不同类型的滑动方式。 ... [详细]
  • Explore how Matterverse is redefining the metaverse experience, creating immersive and meaningful virtual environments that foster genuine connections and economic opportunities. ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • 使用 Azure Service Principal 和 Microsoft Graph API 获取 AAD 用户列表
    本文介绍了一段通用代码示例,该代码不仅能够操作 Azure Active Directory (AAD),还可以通过 Azure Service Principal 的授权访问和管理 Azure 订阅资源。Azure 的架构可以分为两个层级:AAD 和 Subscription。 ... [详细]
  • 本文深入探讨了 Java 中的 Serializable 接口,解释了其实现机制、用途及注意事项,帮助开发者更好地理解和使用序列化功能。 ... [详细]
  • 本文详细介绍了Akka中的BackoffSupervisor机制,探讨其在处理持久化失败和Actor重启时的应用。通过具体示例,展示了如何配置和使用BackoffSupervisor以实现更细粒度的异常处理。 ... [详细]
  • 本文详细介绍了Java编程语言中的核心概念和常见面试问题,包括集合类、数据结构、线程处理、Java虚拟机(JVM)、HTTP协议以及Git操作等方面的内容。通过深入分析每个主题,帮助读者更好地理解Java的关键特性和最佳实践。 ... [详细]
  • MQTT技术周报:硬件连接与协议解析
    本周开发笔记重点介绍了在新项目中使用MQTT协议进行硬件连接的技术细节,涵盖其特性、原理及实现步骤。 ... [详细]
  • 深入解析 Spring Security 用户认证机制
    本文将详细介绍 Spring Security 中用户登录认证的核心流程,重点分析 AbstractAuthenticationProcessingFilter 和 AuthenticationManager 的工作原理。通过理解这些组件的实现,读者可以更好地掌握 Spring Security 的认证机制。 ... [详细]
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社区 版权所有