Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/org.eclipse.papyrus.newchild/src-gen/org/eclipse/papyrus/infra/emf/newchild/ncpolicy/NcpolicyFactory.java')
-rw-r--r--sandbox/org.eclipse.papyrus.newchild/src-gen/org/eclipse/papyrus/infra/emf/newchild/ncpolicy/NcpolicyFactory.java82
1 files changed, 82 insertions, 0 deletions
diff --git a/sandbox/org.eclipse.papyrus.newchild/src-gen/org/eclipse/papyrus/infra/emf/newchild/ncpolicy/NcpolicyFactory.java b/sandbox/org.eclipse.papyrus.newchild/src-gen/org/eclipse/papyrus/infra/emf/newchild/ncpolicy/NcpolicyFactory.java
new file mode 100644
index 00000000000..5933299c750
--- /dev/null
+++ b/sandbox/org.eclipse.papyrus.newchild/src-gen/org/eclipse/papyrus/infra/emf/newchild/ncpolicy/NcpolicyFactory.java
@@ -0,0 +1,82 @@
+/**
+ * <copyright>
+ * </copyright>
+ *
+ * $Id$
+ */
+package org.eclipse.papyrus.infra.emf.newchild.ncpolicy;
+
+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.infra.emf.newchild.ncpolicy.NcpolicyPackage
+ * @generated
+ */
+public interface NcpolicyFactory extends EFactory {
+ /**
+ * The singleton instance of the factory.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ NcpolicyFactory eINSTANCE = org.eclipse.papyrus.infra.emf.newchild.ncpolicy.impl.NcpolicyFactoryImpl.init();
+
+ /**
+ * Returns a new object of class '<em>New EMF Child Menu</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>New EMF Child Menu</em>'.
+ * @generated
+ */
+ NewEMFChildMenu createNewEMFChildMenu();
+
+ /**
+ * Returns a new object of class '<em>New Child Policy Set</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>New Child Policy Set</em>'.
+ * @generated
+ */
+ NewChildPolicySet createNewChildPolicySet();
+
+ /**
+ * Returns a new object of class '<em>Filter Policy</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Filter Policy</em>'.
+ * @generated
+ */
+ FilterPolicy createFilterPolicy();
+
+ /**
+ * Returns a new object of class '<em>Replace Policy</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Replace Policy</em>'.
+ * @generated
+ */
+ ReplacePolicy createReplacePolicy();
+
+ /**
+ * Returns a new object of class '<em>Custom Policy</em>'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return a new object of class '<em>Custom Policy</em>'.
+ * @generated
+ */
+ CustomPolicy createCustomPolicy();
+
+ /**
+ * Returns the package supported by this factory.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return the package supported by this factory.
+ * @generated
+ */
+ NcpolicyPackage getNcpolicyPackage();
+
+} //NcpolicyFactory

Back to the top