blob: 229b2c24de93499db5044082e1b528de89195dcc [file] [log] [blame]
/*
* Copyright (c) 2012, Montages AG
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Michael Golubev (Montages) - initial API (#372479)
*/
package org.eclipse.gmf.tooling.runtime.update;
import java.util.List;
import org.eclipse.gmf.runtime.notation.View;
/**
* @since 3.0
*/
public interface DiagramUpdater {
public List<? extends UpdaterNodeDescriptor> getSemanticChildren(View view);
public List<? extends UpdaterLinkDescriptor> getContainedLinks(View view);
public List<? extends UpdaterLinkDescriptor> getIncomingLinks(View view);
public List<? extends UpdaterLinkDescriptor> getOutgoingLinks(View view);
}