blob: 4a36945b1b9d67572cf26b03d795269b4ed9c795 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2008, 2019 Hatha Systems.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Nikolai Mansourov (Hatha Systems) - initial API and implementation
* *******************************************************************************
*
* $Id$
*/
package org.eclipse.modisco.omg.kdm.core;
import org.eclipse.emf.ecore.EFactory;
/**
* <!-- begin-user-doc -->
* The <b>Factory</b> for the model.
* It provides a create method for each non-abstract class of the model.
* <!-- end-user-doc -->
* @see org.eclipse.modisco.omg.kdm.core.CorePackage
* @generated
*/
public interface CoreFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
CoreFactory eINSTANCE = org.eclipse.modisco.omg.kdm.core.impl.CoreFactoryImpl.init();
/**
* Returns a new object of class '<em>Aggregated Relationship</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Aggregated Relationship</em>'.
* @generated
*/
AggregatedRelationship createAggregatedRelationship();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
CorePackage getCorePackage();
} //CoreFactory