blob: fe6f8de768cc3178c5fedd1e4f3601e2aefc49f7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 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.esfarchitectureconcepts;
import org.polarsys.esf.esfarchitectureconcepts.impl.MESFArchitectureConceptsFactory;
/**
* This factory overrides the generated factory {@link IESFArchitectureConceptsFactory}
* and returns the new generated interfaces.
*
* @author $Author: jdumont $
* @version $Revision: 176 $
*/
public interface IMESFArchitectureConceptsFactory
extends IESFArchitectureConceptsFactory {
/**
* Specialise the eINSTANCE initialisation with the new interface type
* (overridden in the override_factory extension).
*/
IMESFArchitectureConceptsFactory INSTANCE = MESFArchitectureConceptsFactory.init();
/**
* {@inheritDoc}
*/
@Override
IMSBlock createSBlock();
/**
* {@inheritDoc}
*/
@Override
IMSModel createSModel();
/**
* {@inheritDoc}
*/
@Override
IMSPart createSPart();
/**
* {@inheritDoc}
*/
@Override
IMSPortRole createSPortRole();
/**
* {@inheritDoc}
*/
@Override
IMSPort createSPort();
/**
* {@inheritDoc}
*/
@Override
IMSConnector createSConnector();
}