blob: 090053ab413fcbb56c8701b4283ccb8ae650c7c3 [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>Power Domain</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.app4mc.amalthea.model.PowerDomain#getDefaultValue <em>Default Value</em>}</li>
* <li>{@link org.eclipse.app4mc.amalthea.model.PowerDomain#isPowerGating <em>Power Gating</em>}</li>
* </ul>
*
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPowerDomain()
* @model
* @generated
*/
public interface PowerDomain extends HwDomain {
/**
* Returns the value of the '<em><b>Default Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Default Value</em>' containment reference.
* @see #setDefaultValue(Voltage)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPowerDomain_DefaultValue()
* @model containment="true"
* @generated
*/
Voltage getDefaultValue();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.PowerDomain#getDefaultValue <em>Default Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Default Value</em>' containment reference.
* @see #getDefaultValue()
* @generated
*/
void setDefaultValue(Voltage value);
/**
* Returns the value of the '<em><b>Power Gating</b></em>' attribute.
* The default value is <code>"false"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Power Gating</em>' attribute.
* @see #setPowerGating(boolean)
* @see org.eclipse.app4mc.amalthea.model.AmaltheaPackage#getPowerDomain_PowerGating()
* @model default="false" unique="false"
* @generated
*/
boolean isPowerGating();
/**
* Sets the value of the '{@link org.eclipse.app4mc.amalthea.model.PowerDomain#isPowerGating <em>Power Gating</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Power Gating</em>' attribute.
* @see #isPowerGating()
* @generated
*/
void setPowerGating(boolean value);
} // PowerDomain