當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。