本文整理匯總了Java中org.eclipse.emf.ecore.EObject.eSetDeliver方法的典型用法代碼示例。如果您正苦於以下問題:Java EObject.eSetDeliver方法的具體用法?Java EObject.eSetDeliver怎麽用?Java EObject.eSetDeliver使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.eclipse.emf.ecore.EObject
的用法示例。
在下文中一共展示了EObject.eSetDeliver方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createAndSetProxy
import org.eclipse.emf.ecore.EObject; //導入方法依賴的package包/類
/**
* Creates a proxy instance that will later on allow to lazily resolve the semantically referenced instance for the
* given {@link CrossReference xref}.
*/
@SuppressWarnings("unchecked")
private void createAndSetProxy(N4JSResource resource, EObject obj, INode node, EReference eRef,
CrossReference xref,
IDiagnosticProducer diagnosticProducer) {
final EObject proxy = createProxy(resource, obj, node, eRef, xref, diagnosticProducer);
proxy.eSetDeliver(false);
if (eRef.isMany()) {
((InternalEList<EObject>) obj.eGet(eRef, false)).addUnique(proxy);
} else {
obj.eSet(eRef, proxy);
}
}
示例2: execute
import org.eclipse.emf.ecore.EObject; //導入方法依賴的package包/類
public void execute(Operation operation) {
Id oid = operation.instanceId();
EObject eObject = contents.get(oid);
eObject.eSetDeliver(false);
// execute without notification
eObject.eSetDeliver(true);
}