当前位置: 首页>>代码示例>>Java>>正文


Java InternalEObject.eDirectResource方法代码示例

本文整理汇总了Java中org.eclipse.emf.ecore.InternalEObject.eDirectResource方法的典型用法代码示例。如果您正苦于以下问题:Java InternalEObject.eDirectResource方法的具体用法?Java InternalEObject.eDirectResource怎么用?Java InternalEObject.eDirectResource使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.eclipse.emf.ecore.InternalEObject的用法示例。


在下文中一共展示了InternalEObject.eDirectResource方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: defaultGetURIFragment

import org.eclipse.emf.ecore.InternalEObject; //导入方法依赖的package包/类
/**
 * We don't use a {@link IFragmentProvider} here. The implementation is a complete copied from
 * {@link ResourceImpl#getURIFragment}
 *
 * @param eObject
 *            the object the URI fragment should be calculated for.
 * @return the calculated URI fragment
 */
private String defaultGetURIFragment(EObject eObject) {
	// Copied from ResourceImpl.getURIFragment to avoid the caching
	// mechanism which will add a content
	// adapter which in turn will resolve / load the resource (while the
	// purpose of all the code is to
	// avoid resource loading)
	InternalEObject internalEObject = (InternalEObject) eObject;
	if (internalEObject.eDirectResource() == this || unloadingContents != null
			&& unloadingContents.contains(internalEObject)) {
		return "/" + getURIFragmentRootSegment(eObject);
	} else {
		SegmentSequence.Builder builder = SegmentSequence.newBuilder("/");

		boolean isContained = false;
		for (InternalEObject container = internalEObject
				.eInternalContainer(); container != null; container = internalEObject
						.eInternalContainer()) {
			builder.append(container.eURIFragmentSegment(internalEObject.eContainingFeature(), internalEObject));
			internalEObject = container;
			if (container.eDirectResource() == this || unloadingContents != null
					&& unloadingContents.contains(container)) {
				isContained = true;
				break;
			}
		}

		if (!isContained) {
			return "/-1";
		}

		builder.append(getURIFragmentRootSegment(internalEObject));
		builder.append("");
		builder.reverse();

		// This comment also resides in ResourceImpl.getURIFragment:
		// Note that we convert it to a segment sequence because the
		// most common use case is that callers of this method will call
		// URI.appendFragment.
		// By creating the segment sequence here, we ensure that it's
		// found in the cache.
		//
		return builder.toSegmentSequence().toString();
	}
}
 
开发者ID:eclipse,项目名称:n4js,代码行数:53,代码来源:N4JSResource.java


注:本文中的org.eclipse.emf.ecore.InternalEObject.eDirectResource方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。