/** * * * * $Id$ */ package org.eclipse.papyrus.customization.properties.generation.fieldselection; import org.eclipse.emf.ecore.EFactory; /** * * The Factory for the model. * It provides a create method for each non-abstract class of the model. * * @see org.eclipse.papyrus.customization.properties.generation.fieldselection.FieldSelectionPackage * @generated */ public interface FieldSelectionFactory extends EFactory { /** * The singleton instance of the factory. * * * @generated */ FieldSelectionFactory eINSTANCE = org.eclipse.papyrus.customization.properties.generation.fieldselection.impl.FieldSelectionFactoryImpl.init(); /** * Returns a new object of class 'Field Selection'. * * * @return a new object of class 'Field Selection'. * @generated */ FieldSelection createFieldSelection(); /** * Returns a new object of class 'Property Definition'. * * * @return a new object of class 'Property Definition'. * @generated */ PropertyDefinition createPropertyDefinition(); /** * Returns a new object of class 'Context Element'. * * * @return a new object of class 'Context Element'. * @generated */ ContextElement createContextElement(); /** * Returns the package supported by this factory. * * * @return the package supported by this factory. * @generated */ FieldSelectionPackage getFieldSelectionPackage(); } //FieldSelectionFactory