blob: 723608d0b4a44e3aca5e23e40bf02d15b94d033e [file] [log] [blame]
// Rate.java
package org.eclipse.stem.definitions.types;
import org.eclipse.emf.ecore.EObject;
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/**
* A <code>Rate</code> is a type that specifies a rate of change of one unit of
* measure with respect to another unit of measure.
*
* @model abstract="true"
*/
public interface Rate extends EObject {
/**
* @model
*/
double getRate();
/**
* Sets the value of the '{@link org.eclipse.stem.definitions.types.Rate#getRate <em>Rate</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Rate</em>' attribute.
* @see #getRate()
* @generated
*/
void setRate(double value);
} // Rate