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

User Manual    [Previous]   [Next]   

W050 Target State Not Found

Umple semantic warning reported when the target state of a transition is not listed.

An end state (with no outgoing transitions) is generated. The purpose of the warning is to alert the developer that they may have a typographical error in the target state name.

Example

// This example generates the error message
class X {
  sm {
    s1 {
      e1 -> s2;
    }
  }
}
      

Load the above code into UmpleOnline

 

Solution to The Above So the Message No Longer Appears

// This example solves the problem
class X {
  sm {
    s1 {
      e1 -> s2;
    }
    s2 {}
  }
}
      

Load the above code into UmpleOnline