blob: df2724900332df8236f07de7f57445f157b72830 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 CEA LIST.
* 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:
* CEA LIST - initial API and implementation
*******************************************************************************/
package org.eclipse.papyrus.designer.transformation.extensions;
import org.eclipse.uml2.uml.InstanceSpecification;
import org.eclipse.uml2.uml.Property;
/**
* Interface used by SW Designer extensions that supports specific instance configurators,
* used for containers.
*/
public interface IInstanceConfigurator {
/**
* configure an instance (within a container)
*
* @param instance
* the instance of an element which should be configured.
* @param componentPart
* the property that represents the component within the enclosing composite. May be null, if the instance
* that should be configured is the main instance.
* @param parentInstance
* the instance specification of the parent, i.e. the enclosing composite. If the instance that should be
* configured has a container, the parent instance corresponds to the instance specification of this
* container. This instance specification provides thus access to additional information available on the
* container level.
*/
public void configureInstance(InstanceSpecification instance, Property componentPart, InstanceSpecification parentInstance);
}