|
E061 Queued and Regular State Machines in Class
[Previous]  [Next] 
|
![]() |
User Manual [Previous]  [Next] E061 Queued and Regular State Machines in ClassUmple semantic error reported when a class contains one or more queued state machine and regular state machine
An Umple class cannot contain both a queued state machine and a regular state machine. Example
//The error will be generated as
//class A contains both a regular
//and a queued state machine
class A {
queued sm1 {
s0 {
e -> s1;
}
s1 {
}
}
sm2 {
s0 {
e -> s1;
}
s1 {
}
}
}
Load the above code into UmpleOnline Solution to The Above So the Message No Longer Appears
//The error can be fixed by having each
//state machine in a different class
class A {
queued sm1 {
s0 {
e -> s1;
}
s1 {
}
}
}
class B {
sm2 {
s0 {
e -> s1;
}
s1 {
}
}
}
Load the above code into UmpleOnline |