本文整理匯總了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();
}
}