blob: 6a08064408ee95519ae1bad958d1b1eac59ed4fe [file] [log] [blame]
package org.polarsys.chess.core.extensionpoint;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.uml2.uml.Model;
/**
* The Interface IAddProfile.
*/
public interface IAddProfile {
/**
* Applies a profile to the given model and resourceset.
*
* @param owner the owner
* @param resourceSet the resource set
*/
void addProfile(Model owner, ResourceSet resourceSet);
/**
* Loads a profile for the given ResourceSet.
*
* @param resourceSet the resource set
*/
void loadProfile(ResourceSet resourceSet);
}