blob: d43b88976f69d240b31740d8cc64774e17a5573a [file] [log] [blame]
/**
* Copyright (c) 2018 CEA LIST.
*
* 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:
* Arnault Lapitre (CEA LIST) arnault.lapitre@cea.fr
* - Initial API and Implementation
*/
package org.eclipse.efm.ecore.formalml.statemachine;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Pseudostate</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.statemachine.Pseudostate#getKind <em>Kind</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.statemachine.StatemachinePackage#getPseudostate()
* @model
* @generated
*/
public interface Pseudostate extends Vertex {
/**
* Returns the value of the '<em><b>Kind</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.efm.ecore.formalml.statemachine.PseudostateKind}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Kind</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Kind</em>' attribute.
* @see org.eclipse.efm.ecore.formalml.statemachine.PseudostateKind
* @see #setKind(PseudostateKind)
* @see org.eclipse.efm.ecore.formalml.statemachine.StatemachinePackage#getPseudostate_Kind()
* @model
* @generated
*/
PseudostateKind getKind();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.statemachine.Pseudostate#getKind <em>Kind</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Kind</em>' attribute.
* @see org.eclipse.efm.ecore.formalml.statemachine.PseudostateKind
* @see #getKind()
* @generated
*/
void setKind(PseudostateKind value);
} // Pseudostate