blob: eb599ecb6d2fd34d3dbbe307b22d18c72d2a0584 [file] [log] [blame]
/**
* Copyright (c) 2016 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
*
*/
package org.eclipse.efm.formalml;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.uml2.uml.Property;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Clock</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Properties in clocks shall have a type stereotype by [to define:TimedType]
* Reset is the only allowed action on properties in clock
*
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.formalml.Clock#getBaseProperty <em>Base Property</em>}</li>
* </ul>
*
* @see org.eclipse.efm.formalml.formalmlPackage#getClock()
* @model
* @generated
*/
public interface Clock extends EObject {
/**
* Returns the value of the '<em><b>Base Property</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Base Property</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Base Property</em>' reference.
* @see #setBaseProperty(Property)
* @see org.eclipse.efm.formalml.formalmlPackage#getClock_BaseProperty()
* @model required="true" ordered="false"
* annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='base_Property'"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='extension_ClockVar'"
* @generated
*/
Property getBaseProperty();
/**
* Sets the value of the '{@link org.eclipse.efm.formalml.Clock#getBaseProperty <em>Base Property</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Base Property</em>' reference.
* @see #getBaseProperty()
* @generated
*/
void setBaseProperty(Property value);
} // Clock