|
E026 Duplicate Key Item
[Previous]  [Next] 
|
![]() |
User Manual [Previous]  [Next] E026 Duplicate Key ItemUmple semantic error reported when a key has a duplicate itemIf an item (attribute, association, state machine) appears twice in a key, it is an error, since Umple cannot tell the preferred order of items. Example
// The following example has error 26
// since the key has 'a' twice
class X26dupiteminkey {
a;
b;
key {a, b, a}
}
Load the above code into UmpleOnline |