Go to the documentation of this file.00001 #ifndef _TEST_JBACI_ENUM_PROP_IDL
00002 #define _TEST_JBACI_ENUM_PROP_IDL
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #include <baci.idl>
00032 #include <enumpropMACRO.idl>
00033 #include <enumpropStd.idl>
00034
00035 #define BASE_STATES DISABLED, ENABLED, DIAGNOSE, \
00036 SHUTDOWN, INITIALIZE
00037
00038 module jbaciEnumPropTest {
00039
00040 enum States { BASE_STATES };
00041
00042 ACS_ENUM(States);
00043
00044
00045 interface StateMachine {
00046
00047 exception NoSuchState { };
00048 exception NoSuchTransition { };
00049
00057 readonly attribute ROStates currentState;
00061 ACSErr::Completion enable() raises (NoSuchTransition);
00062 ACSErr::Completion disable() raises (NoSuchTransition);
00063 ACSErr::Completion diagnose() raises (NoSuchTransition);
00064 ACSErr::Completion shutdown() raises (NoSuchTransition);
00065 ACSErr::Completion init() raises (NoSuchTransition);
00066 ACSErr::Completion on() raises (NoSuchTransition);
00067 ACSErr::Completion off() raises (NoSuchTransition);
00068
00069
00073 readonly attribute RWStates currentStateRW;
00074
00075 };
00076
00077 interface jbaciEnumTestComponent : ACS::CharacteristicComponent, StateMachine {
00078 };
00079
00080 };
00081
00082 #endif
00083