Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/needs/NeedsFactory.java')
-rw-r--r--extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/needs/NeedsFactory.java149
1 files changed, 0 insertions, 149 deletions
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/needs/NeedsFactory.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/needs/NeedsFactory.java
deleted file mode 100644
index 9dc11ee1e06..00000000000
--- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/needs/NeedsFactory.java
+++ /dev/null
@@ -1,149 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2010 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:
- * Sara TUCCI (CEA LIST) sara.tucci@cea.fr - Initial API and implementation
- * Chokri MRAIDHA (CEA LIST) chokri.mraidha@cea.fr - Initial API and implementation
- * David SERVAT (CEA LIST) david.servat@cea.fr - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.eastadl.annex.needs;
-
-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.papyrus.eastadl.annex.needs.NeedsPackage
- * @generated
- */
-public interface NeedsFactory extends EFactory {
- /**
- * The singleton instance of the factory.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @generated
- */
- NeedsFactory eINSTANCE = org.eclipse.papyrus.eastadl.annex.needs.impl.NeedsFactoryImpl.init();
-
- /**
- * Returns a new object of class '<em>Business Opportunity</em>'.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @return a new object of class '<em>Business Opportunity</em>'.
- * @generated
- */
- BusinessOpportunity createBusinessOpportunity();
-
- /**
- * Returns a new object of class '<em>Mission</em>'.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @return a new object of class '<em>Mission</em>'.
- * @generated
- */
- Mission createMission();
-
- /**
- * Returns a new object of class '<em>Vehicle System</em>'.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @return a new object of class '<em>Vehicle System</em>'.
- * @generated
- */
- VehicleSystem createVehicleSystem();
-
- /**
- * Returns a new object of class '<em>Architecture</em>'.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @return a new object of class '<em>Architecture</em>'.
- * @generated
- */
- Architecture createArchitecture();
-
- /**
- * Returns a new object of class '<em>Architectural Description</em>'.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @return a new object of class '<em>Architectural Description</em>'.
- * @generated
- */
- ArchitecturalDescription createArchitecturalDescription();
-
- /**
- * Returns a new object of class '<em>Architectural Model</em>'.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @return a new object of class '<em>Architectural Model</em>'.
- * @generated
- */
- ArchitecturalModel createArchitecturalModel();
-
- /**
- * Returns a new object of class '<em>Problem Statement</em>'.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @return a new object of class '<em>Problem Statement</em>'.
- * @generated
- */
- ProblemStatement createProblemStatement();
-
- /**
- * Returns a new object of class '<em>Product Positioning</em>'.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @return a new object of class '<em>Product Positioning</em>'.
- * @generated
- */
- ProductPositioning createProductPositioning();
-
- /**
- * Returns a new object of class '<em>Stakeholder</em>'.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @return a new object of class '<em>Stakeholder</em>'.
- * @generated
- */
- Stakeholder createStakeholder();
-
- /**
- * Returns a new object of class '<em>Stakeholder Need</em>'.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @return a new object of class '<em>Stakeholder Need</em>'.
- * @generated
- */
- StakeholderNeed createStakeholderNeed();
-
- /**
- * Returns the package supported by this factory.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- *
- * @return the package supported by this factory.
- * @generated
- */
- NeedsPackage getNeedsPackage();
-
-} // NeedsFactory

Back to the top