list of dots Digital Research Alliance of Canada logo  NSERC logo  University of Ottawa logo / UniversitĂ© d'Ottawa

User Manual    [Previous]   [Next]   

E105 Enumeration in Composition

Umple semantic error reported when an enumeration is used in a composition.

In Umple, enumerations cannot be used in compositions.

Example

// This example generates the error

class X {
  enum Y { Red, Blue, Green }
  0..1 <@>- * Y;
}

class Y {
  name;
}
      

Load the above code into UmpleOnline

 

Solution to The Above So the Message No Longer Appears

// This example does not generate the error

class X {
  enum Y { Red, Blue, Green }
  0..1 <@>- * Z;
}

class Z {
  name;
}
      

Load the above code into UmpleOnline