/** */ package hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Model'. * * *

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FilesystemPackage#getModel() * @model * @generated */ public interface Model extends EObject { /** * Returns the value of the 'Filesystems' containment reference. * *

* If the meaning of the 'Filesystems' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Filesystems' containment reference. * @see #setFilesystems(FileSystem) * @see hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FilesystemPackage#getModel_Filesystems() * @model containment="true" required="true" * @generated */ FileSystem getFilesystems(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.Model#getFilesystems Filesystems}' containment reference. * * * @param value the new value of the 'Filesystems' containment reference. * @see #getFilesystems() * @generated */ void setFilesystems(FileSystem value); /** * Returns the value of the 'Other FS Objects' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FSObject}. * *

* If the meaning of the 'Other FS Objects' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Other FS Objects' containment reference list. * @see hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FilesystemPackage#getModel_OtherFSObjects() * @model containment="true" * @generated */ EList getOtherFSObjects(); } // Model