Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/sysml14/org.eclipse.papyrus.sysml14/src/org/eclipse/papyrus/sysml14/requirements/CustomRequirementsFactoryImpl.java')
-rw-r--r--extraplugins/sysml14/org.eclipse.papyrus.sysml14/src/org/eclipse/papyrus/sysml14/requirements/CustomRequirementsFactoryImpl.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/extraplugins/sysml14/org.eclipse.papyrus.sysml14/src/org/eclipse/papyrus/sysml14/requirements/CustomRequirementsFactoryImpl.java b/extraplugins/sysml14/org.eclipse.papyrus.sysml14/src/org/eclipse/papyrus/sysml14/requirements/CustomRequirementsFactoryImpl.java
deleted file mode 100644
index 6a7d35e8f1e..00000000000
--- a/extraplugins/sysml14/org.eclipse.papyrus.sysml14/src/org/eclipse/papyrus/sysml14/requirements/CustomRequirementsFactoryImpl.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2015 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:
- * Benoit Maggi (CEA LIST) benoit.maggi@cea.fr - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.sysml14.requirements;
-
-import org.eclipse.papyrus.sysml14.requirements.internal.impl.RequirementsFactoryImpl;
-
-/**
- * this class has been added in order to integrated specific implementation of Stereotypes: Requirement.
- * Specific code has been added to calculate derived properties see Requirement Req0010 DerivedProperties
- *
- *
- */
-public class CustomRequirementsFactoryImpl extends RequirementsFactoryImpl implements RequirementsFactory {
-
- @Override
- public Requirement createRequirement() {
- CustomRequirementImpl customRequirementImpl = new CustomRequirementImpl();
- return customRequirementImpl;
- }
-
-}

Back to the top