/** */ package hu.bme.mit.inf.dslreasoner.faulttree.model.cft; 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 hu.bme.mit.inf.dslreasoner.faulttree.model.cft.CftPackage * @generated */ public interface CftFactory extends EFactory { /** * The singleton instance of the factory. * * * @generated */ CftFactory eINSTANCE = hu.bme.mit.inf.dslreasoner.faulttree.model.cft.impl.CftFactoryImpl.init(); /** * Returns a new object of class 'Component Definition'. * * * @return a new object of class 'Component Definition'. * @generated */ ComponentDefinition createComponentDefinition(); /** * Returns a new object of class 'Basic Event Definition'. * * * @return a new object of class 'Basic Event Definition'. * @generated */ BasicEventDefinition createBasicEventDefinition(); /** * Returns a new object of class 'Intput Event'. * * * @return a new object of class 'Intput Event'. * @generated */ IntputEvent createIntputEvent(); /** * Returns a new object of class 'And Gate Definition'. * * * @return a new object of class 'And Gate Definition'. * @generated */ AndGateDefinition createAndGateDefinition(); /** * Returns a new object of class 'Or Gate Definition'. * * * @return a new object of class 'Or Gate Definition'. * @generated */ OrGateDefinition createOrGateDefinition(); /** * Returns a new object of class 'KOf MGate Definition'. * * * @return a new object of class 'KOf MGate Definition'. * @generated */ KOfMGateDefinition createKOfMGateDefinition(); /** * Returns a new object of class 'Component Fault Tree'. * * * @return a new object of class 'Component Fault Tree'. * @generated */ ComponentFaultTree createComponentFaultTree(); /** * Returns a new object of class 'Component'. * * * @return a new object of class 'Component'. * @generated */ Component createComponent(); /** * Returns a new object of class 'Input'. * * * @return a new object of class 'Input'. * @generated */ Input createInput(); /** * Returns a new object of class 'Output'. * * * @return a new object of class 'Output'. * @generated */ Output createOutput(); /** * Returns a new object of class 'Connection'. * * * @return a new object of class 'Connection'. * @generated */ Connection createConnection(); /** * Returns the package supported by this factory. * * * @return the package supported by this factory. * @generated */ CftPackage getCftPackage(); } //CftFactory