blob: 986ef8c8ccd0817134922317c66c2e979b79dc44 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2018 Willink Transformations and others.
* 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:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.qvtd.pivot.qvtrelation;
import org.eclipse.emf.ecore.EFactory;
import org.eclipse.jdt.annotation.NonNull;
/**
* <!-- 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.qvtd.pivot.qvtrelation.QVTrelationPackage
* @generated
*/
public interface QVTrelationFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
QVTrelationFactory eINSTANCE = org.eclipse.qvtd.pivot.qvtrelation.impl.QVTrelationFactoryImpl.init();
/**
* Returns a new object of class '<em>Domain Pattern</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Domain Pattern</em>'.
* @generated
*/
@NonNull DomainPattern createDomainPattern();
/**
* Returns a new object of class '<em>Key</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Key</em>'.
* @generated
*/
@NonNull Key createKey();
/**
* Returns a new object of class '<em>Relation</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Relation</em>'.
* @generated
*/
@NonNull Relation createRelation();
/**
* Returns a new object of class '<em>Relation Call Exp</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Relation Call Exp</em>'.
* @generated
*/
@NonNull RelationCallExp createRelationCallExp();
/**
* Returns a new object of class '<em>Relation Domain</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Relation Domain</em>'.
* @generated
*/
@NonNull RelationDomain createRelationDomain();
/**
* Returns a new object of class '<em>Relation Domain Assignment</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Relation Domain Assignment</em>'.
* @generated
*/
@NonNull RelationDomainAssignment createRelationDomainAssignment();
/**
* Returns a new object of class '<em>Relation Model</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Relation Model</em>'.
* @generated
*/
@NonNull RelationModel createRelationModel();
/**
* Returns a new object of class '<em>Relation Implementation</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Relation Implementation</em>'.
* @generated
*/
@NonNull RelationImplementation createRelationImplementation();
/**
* Returns a new object of class '<em>Relational Transformation</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Relational Transformation</em>'.
* @generated
*/
@NonNull RelationalTransformation createRelationalTransformation();
/**
* Returns a new object of class '<em>Shared Variable</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Shared Variable</em>'.
* @generated
*/
@NonNull SharedVariable createSharedVariable();
/**
* Returns a new object of class '<em>Template Variable</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Template Variable</em>'.
* @generated
*/
@NonNull TemplateVariable createTemplateVariable();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
QVTrelationPackage getQVTrelationPackage();
} //QVTrelationFactory