ReqSpecFactory.java
/**
* *
* Copyright (c) 2004-2025 Carnegie Mellon University and others. (see Contributors file).
* All Rights Reserved.
*
* NO WARRANTY. ALL MATERIAL IS FURNISHED ON AN "AS-IS" BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY
* KIND, EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF FITNESS FOR PURPOSE
* OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT
* MAKE ANY WARRANTY OF ANY KIND WITH RESPECT TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
* SPDX-License-Identifier: EPL-2.0
*
* Created, in part, with funding and support from the United States Government. (see Acknowledgments file).
*
* This program includes and/or can make use of certain third party source code, object code, documentation and other
* files ("Third Party Software"). The Third Party Software that is used by this program is dependent upon your system
* configuration. By using this program, You agree to comply with any and all relevant Third Party Software terms and
* conditions contained in any such Third Party Software or separate license file distributed with such Third Party
* Software. The parties who own the Third Party Software ("Third Party Licensors") are intended third party benefici-
* aries to this license with respect to the terms applicable to their Third Party Software. Third Party Software li-
* censes only apply to the Third Party Software and not any other portion of this program or this program as a whole.
*/
package org.osate.reqspec.reqSpec;
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.osate.reqspec.reqSpec.ReqSpecPackage
* @generated
*/
public interface ReqSpecFactory extends EFactory
{
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
ReqSpecFactory eINSTANCE = org.osate.reqspec.reqSpec.impl.ReqSpecFactoryImpl.init();
/**
* Returns a new object of class '<em>Req Spec</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Req Spec</em>'.
* @generated
*/
ReqSpec createReqSpec();
/**
* Returns a new object of class '<em>Global Constants</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Global Constants</em>'.
* @generated
*/
GlobalConstants createGlobalConstants();
/**
* Returns a new object of class '<em>Contractual Element</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Contractual Element</em>'.
* @generated
*/
ContractualElement createContractualElement();
/**
* Returns a new object of class '<em>Req Root</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Req Root</em>'.
* @generated
*/
ReqRoot createReqRoot();
/**
* Returns a new object of class '<em>Stakeholder Goals</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Stakeholder Goals</em>'.
* @generated
*/
StakeholderGoals createStakeholderGoals();
/**
* Returns a new object of class '<em>Req Document</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Req Document</em>'.
* @generated
*/
ReqDocument createReqDocument();
/**
* Returns a new object of class '<em>Document Section</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Document Section</em>'.
* @generated
*/
DocumentSection createDocumentSection();
/**
* Returns a new object of class '<em>Requirement Set</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Requirement Set</em>'.
* @generated
*/
RequirementSet createRequirementSet();
/**
* Returns a new object of class '<em>Goal</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Goal</em>'.
* @generated
*/
Goal createGoal();
/**
* Returns a new object of class '<em>Requirement</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Requirement</em>'.
* @generated
*/
Requirement createRequirement();
/**
* Returns a new object of class '<em>Include Global Requirement</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Include Global Requirement</em>'.
* @generated
*/
IncludeGlobalRequirement createIncludeGlobalRequirement();
/**
* Returns a new object of class '<em>When Condition</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>When Condition</em>'.
* @generated
*/
WhenCondition createWhenCondition();
/**
* Returns a new object of class '<em>Req Predicate</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Req Predicate</em>'.
* @generated
*/
ReqPredicate createReqPredicate();
/**
* Returns a new object of class '<em>Informal Predicate</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Informal Predicate</em>'.
* @generated
*/
InformalPredicate createInformalPredicate();
/**
* Returns a new object of class '<em>Value Predicate</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Value Predicate</em>'.
* @generated
*/
ValuePredicate createValuePredicate();
/**
* Returns a new object of class '<em>Desired Value</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Desired Value</em>'.
* @generated
*/
DesiredValue createDesiredValue();
/**
* Returns a new object of class '<em>External Document</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>External Document</em>'.
* @generated
*/
ExternalDocument createExternalDocument();
/**
* Returns a new object of class '<em>System Requirement Set</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>System Requirement Set</em>'.
* @generated
*/
SystemRequirementSet createSystemRequirementSet();
/**
* Returns a new object of class '<em>Global Requirement Set</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Global Requirement Set</em>'.
* @generated
*/
GlobalRequirementSet createGlobalRequirementSet();
/**
* Returns a new object of class '<em>Req Val Declaration</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Req Val Declaration</em>'.
* @generated
*/
ReqValDeclaration createReqValDeclaration();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
ReqSpecPackage getReqSpecPackage();
} //ReqSpecFactory