/** */ 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 'File System'. * * *

* The following features are supported: *

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

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

* * @return the value of the 'Root' containment reference. * @see #setRoot(FSObject) * @see hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FilesystemPackage#getFileSystem_Root() * @model containment="true" required="true" * @generated */ FSObject getRoot(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FileSystem#getRoot Root}' containment reference. * * * @param value the new value of the 'Root' containment reference. * @see #getRoot() * @generated */ void setRoot(FSObject value); /** * Returns the value of the 'Live' reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FSObject}. * *

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

* * @return the value of the 'Live' reference list. * @see hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FilesystemPackage#getFileSystem_Live() * @model transient="true" changeable="false" volatile="true" derived="true" * annotation="org.eclipse.viatra.query.querybasedfeature patternFQN='hu.bme.mit.inf.dslreasoner.domains.alloyexamples.live'" * @generated */ EList getLive(); } // FileSystem