blob: 5d029f187e49f5d5ce0b2b332f076fcae0361494 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2021 THALES GLOBAL SERVICES.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.diagram.business.internal.metamodel.description.extensions;
import java.util.Map;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.sirius.diagram.description.ContainerMapping;
import org.eclipse.sirius.viewpoint.DSemanticDecorator;
/**
* Extension to the ContainerMapping interface to support more efficient implementation.
*
* @author pcdavid
*/
public interface IContainerMappingExt extends ContainerMapping {
/**
* Returns the 'viewContainersDone' map for this mapping.
*
* @return the 'viewContainersDone' map for this mapping.
*/
Map<EObject, EList<DSemanticDecorator>> getViewContainerDone();
}