blob: bb8283f91a1788b016271bb65beb874927e2f0a0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2018 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Johannes Faltermeier - initial API and implementation
* Christian W. Damus - bug 533522
******************************************************************************/
package org.eclipse.emfforms.internal.editor.ecore;
import org.eclipse.emf.common.notify.Notifier;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emfforms.spi.swt.treemasterdetail.diagnostic.DiagnosticCache;
/**
* {@link DiagnosticCache} for ecore.
*/
public class EcoreDiagnosticCache extends DiagnosticCache {
/**
* @param input the input
*/
public EcoreDiagnosticCache(Notifier input) {
super(input);
}
@Override
protected void updateCache(EObject element, DiagnosticCache cache) {
super.updateCache(element, cache);
// In the initial walk over the contents, we will already have processed
// the containment chain
if (!isInitializing()) {
final EObject parent = element.eContainer();
if (parent != null) {
updateCache(parent, cache);
}
}
}
@Override
protected void updateCacheWithoutRefresh(EObject element, DiagnosticCache cache) {
super.updateCacheWithoutRefresh(element, cache);
// In the initial walk over the contents, we will already have processed
// the containment chain
if (!isInitializing()) {
final EObject parent = element.eContainer();
if (parent != null) {
updateCacheWithoutRefresh(parent, cache);
}
}
}
}