/** */ package ca.mcgill.ecse.dslreasoner.standalone.test.yakindu; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Vertex'. * * *

* The following features are supported: *

* * * @see ca.mcgill.ecse.dslreasoner.standalone.test.yakindu.yakinduPackage#getVertex() * @model abstract="true" * @generated */ public interface Vertex extends EObject { /** * Returns the value of the 'Incoming Transitions' reference list. * The list contents are of type {@link ca.mcgill.ecse.dslreasoner.standalone.test.yakindu.Transition}. * It is bidirectional and its opposite is '{@link ca.mcgill.ecse.dslreasoner.standalone.test.yakindu.Transition#getTarget Target}'. * *

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

* * @return the value of the 'Incoming Transitions' reference list. * @see ca.mcgill.ecse.dslreasoner.standalone.test.yakindu.yakinduPackage#getVertex_IncomingTransitions() * @see ca.mcgill.ecse.dslreasoner.standalone.test.yakindu.Transition#getTarget * @model opposite="target" ordered="false" * @generated */ EList getIncomingTransitions(); /** * Returns the value of the 'Outgoing Transitions' containment reference list. * The list contents are of type {@link ca.mcgill.ecse.dslreasoner.standalone.test.yakindu.Transition}. * It is bidirectional and its opposite is '{@link ca.mcgill.ecse.dslreasoner.standalone.test.yakindu.Transition#getSource Source}'. * *

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

* * @return the value of the 'Outgoing Transitions' containment reference list. * @see ca.mcgill.ecse.dslreasoner.standalone.test.yakindu.yakinduPackage#getVertex_OutgoingTransitions() * @see ca.mcgill.ecse.dslreasoner.standalone.test.yakindu.Transition#getSource * @model opposite="source" containment="true" ordered="false" * @generated */ EList getOutgoingTransitions(); } // Vertex