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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FilesystemPackage#getDir() * @model * @generated */ public interface Dir extends FSObject { /** * Returns the value of the 'Contents' containment reference list. * The list contents are of type {@link hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FSObject}. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FSObject#getParent Parent}'. * *

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

* * @return the value of the 'Contents' containment reference list. * @see hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FilesystemPackage#getDir_Contents() * @see hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FSObject#getParent * @model opposite="parent" containment="true" * @generated */ EList getContents(); } // Dir