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

* The following features are supported: *

* * * @see hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FilesystemPackage#getFSObject() * @model abstract="true" * @generated */ public interface FSObject extends EObject { /** * Returns the value of the 'Parent' container reference. * It is bidirectional and its opposite is '{@link hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.Dir#getContents Contents}'. * *

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

* * @return the value of the 'Parent' container reference. * @see #setParent(Dir) * @see hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FilesystemPackage#getFSObject_Parent() * @see hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.Dir#getContents * @model opposite="contents" transient="false" * @generated */ Dir getParent(); /** * Sets the value of the '{@link hu.bme.mit.inf.dslreasoner.domains.alloyexamples.Filesystem.FSObject#getParent Parent}' container reference. * * * @param value the new value of the 'Parent' container reference. * @see #getParent() * @generated */ void setParent(Dir value); } // FSObject