/** */ package ca.mcgill.ecse.dslreasoner.standalone.test.filesystem; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'FS Object'. * * *

* The following features are supported: *

* * * @see ca.mcgill.ecse.dslreasoner.standalone.test.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 ca.mcgill.ecse.dslreasoner.standalone.test.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 ca.mcgill.ecse.dslreasoner.standalone.test.filesystem.filesystemPackage#getFSObject_Parent() * @see ca.mcgill.ecse.dslreasoner.standalone.test.filesystem.Dir#getContents * @model opposite="contents" transient="false" * @generated */ Dir getParent(); /** * Sets the value of the '{@link ca.mcgill.ecse.dslreasoner.standalone.test.filesystem.FSObject#getParent Parent}' container reference. * * * @param value the new value of the 'Parent' container reference. * @see #getParent() * @generated */ void setParent(Dir value); } // FSObject