/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/
package cenrep;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Bit</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link cenrep.Bit#isState <em>State</em>}</li>
* <li>{@link cenrep.Bit#getNumber <em>Number</em>}</li>
* </ul>
* </p>
*
* @see cenrep.CenrepPackage#getBit()
* @model
* @generated
*/
public interface Bit extends Content, RVG {
/**
* Returns the value of the '<em><b>State</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>State</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>State</em>' attribute.
* @see #setState(boolean)
* @see cenrep.CenrepPackage#getBit_State()
* @model id="true"
* @generated
*/
boolean isState();
/**
* Sets the value of the '{@link cenrep.Bit#isState <em>State</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>State</em>' attribute.
* @see #isState()
* @generated
*/
void setState(boolean value);
/**
* Returns the value of the '<em><b>Number</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Number</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Number</em>' attribute.
* @see #setNumber(int)
* @see cenrep.CenrepPackage#getBit_Number()
* @model transient="true" volatile="true"
* @generated
*/
int getNumber();
/**
* Sets the value of the '{@link cenrep.Bit#getNumber <em>Number</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Number</em>' attribute.
* @see #getNumber()
* @generated
*/
void setNumber(int value);
} // Bit