blob: f2295529b821a88aff43f90164b5999d81386961 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 ALL4TEC & CEA LIST.
* 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:
* ALL4TEC & CEA LIST - initial API and implementation
*******************************************************************************/
package org.polarsys.esf.esfsafetyconcepts;
import org.polarsys.esf.esfsafetyconcepts.impl.MESFSafetyConceptsFactory;
/**
* This interface can override the generated interface {@link IESFSafetyConceptsFactory}.
*
* @author $Author: ymunoz $
* @version $Revision: 186 $
*/
public interface IMESFSafetyConceptsFactory
extends IESFSafetyConceptsFactory {
/**
* Specialise the eINSTANCE initialisation with the new interface type
* (overridden in the override_factory extension).
*/
IMESFSafetyConceptsFactory INSTANCE = MESFSafetyConceptsFactory.init();
@Override
IMSSafetyArtifacts createSSafetyArtifacts();
}