blob: 68f21eb492818d4e31a7660e90abad78cfe0f5f0 [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2015-2021 Robert Bosch GmbH and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Generated using Eclipse EMF
*
* *******************************************************************************
*/
package org.eclipse.app4mc.amalthea.model;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Voltage</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* General voltage class to define voltage value and unit
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.Voltage#getValue <em>Value</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.Voltage#getUnit <em>Unit</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getVoltage()
* @model
* @generated
*/
public interface Voltage extends Quantity {
/**
* Returns the value of the '<em><b>Value</b></em>' attribute.
* The default value is <code>"0.0"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Value</em>' attribute.
* @see #setValue(double)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getVoltage_Value()
* @model default="0.0" unique="false"
* @generated
*/
double getValue();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Voltage#getValue <em>Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Value</em>' attribute.
* @see #getValue()
* @generated
*/
void setValue(double value);
/**
* Returns the value of the '<em><b>Unit</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.app4mc.amalthea.model.VoltageUnit}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Unit</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.VoltageUnit
* @see #setUnit(VoltageUnit)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getVoltage_Unit()
* @model unique="false"
* @generated
*/
VoltageUnit getUnit();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.Voltage#getUnit <em>Unit</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Unit</em>' attribute.
* @see org.eclipse.app4mc.amalthea.model.VoltageUnit
* @see #getUnit()
* @generated
*/
void setUnit(VoltageUnit value);
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @model unique="false"
* @generated
*/
String toString();
} // Voltage