/** */ package ca.mcgill.ecse.dslreasoner.standalone.test.filesystem; 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 ca.mcgill.ecse.dslreasoner.standalone.test.filesystem.filesystemPackage * @generated */ public interface filesystemFactory extends EFactory { /** * The singleton instance of the factory. * * * @generated */ filesystemFactory eINSTANCE = ca.mcgill.ecse.dslreasoner.standalone.test.filesystem.impl.filesystemFactoryImpl.init(); /** * Returns a new object of class 'File System'. * * * @return a new object of class 'File System'. * @generated */ FileSystem createFileSystem(); /** * Returns a new object of class 'Dir'. * * * @return a new object of class 'Dir'. * @generated */ Dir createDir(); /** * Returns a new object of class 'File'. * * * @return a new object of class 'File'. * @generated */ File createFile(); /** * Returns a new object of class 'Model'. * * * @return a new object of class 'Model'. * @generated */ Model createModel(); /** * Returns the package supported by this factory. * * * @return the package supported by this factory. * @generated */ filesystemPackage getfilesystemPackage(); } //filesystemFactory