/** * Copyright (c) 2011 committers of YAKINDU and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * Contributors: * committers of YAKINDU - initial API and implementation * */ package org.yakindu.sct.model.sgraph; import org.eclipse.emf.common.util.EList; import org.yakindu.base.base.NamedElement; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Vertex</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.yakindu.sct.model.sgraph.Vertex#getParentRegion <em>Parent Region</em>}</li> * <li>{@link org.yakindu.sct.model.sgraph.Vertex#getIncomingTransitions <em>Incoming Transitions</em>}</li> * <li>{@link org.yakindu.sct.model.sgraph.Vertex#getOutgoingTransitions <em>Outgoing Transitions</em>}</li> * </ul> * * @see org.yakindu.sct.model.sgraph.SGraphPackage#getVertex() * @model abstract="true" * @generated */ public interface Vertex extends NamedElement { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ String copyright = "Copyright (c) 2011 committers of YAKINDU and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\nContributors:\r\ncommitters of YAKINDU - initial API and implementation\r\n"; /** * Returns the value of the '<em><b>Parent Region</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.yakindu.sct.model.sgraph.Region#getVertices <em>Vertices</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parent Region</em>' container reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Parent Region</em>' container reference. * @see #setParentRegion(Region) * @see org.yakindu.sct.model.sgraph.SGraphPackage#getVertex_ParentRegion() * @see org.yakindu.sct.model.sgraph.Region#getVertices * @model opposite="vertices" required="true" transient="false" ordered="false" * @generated */ Region getParentRegion(); /** * Sets the value of the '{@link org.yakindu.sct.model.sgraph.Vertex#getParentRegion <em>Parent Region</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Parent Region</em>' container reference. * @see #getParentRegion() * @generated */ void setParentRegion(Region value); /** * Returns the value of the '<em><b>Incoming Transitions</b></em>' reference list. * The list contents are of type {@link org.yakindu.sct.model.sgraph.Transition}. * It is bidirectional and its opposite is '{@link org.yakindu.sct.model.sgraph.Transition#getTarget <em>Target</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Incoming Transitions</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Incoming Transitions</em>' reference list. * @see org.yakindu.sct.model.sgraph.SGraphPackage#getVertex_IncomingTransitions() * @see org.yakindu.sct.model.sgraph.Transition#getTarget * @model opposite="target" ordered="false" * @generated */ EList<Transition> getIncomingTransitions(); /** * Returns the value of the '<em><b>Outgoing Transitions</b></em>' containment reference list. * The list contents are of type {@link org.yakindu.sct.model.sgraph.Transition}. * It is bidirectional and its opposite is '{@link org.yakindu.sct.model.sgraph.Transition#getSource <em>Source</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Outgoing Transitions</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Outgoing Transitions</em>' containment reference list. * @see org.yakindu.sct.model.sgraph.SGraphPackage#getVertex_OutgoingTransitions() * @see org.yakindu.sct.model.sgraph.Transition#getSource * @model opposite="source" containment="true" resolveProxies="true" ordered="false" * @generated */ EList<Transition> getOutgoingTransitions(); } // Vertex