Skip to content
Kevin Brightwell edited this page Aug 26, 2015 · 1 revision

Tracing is a new feature set being introduced into Umple. Currently, Umple supports two types of tracers in a prototype fashion:

  • Console (the default)
  • String (used for testing)

To specify a non default tracer, use the following Umple code:

  tracer String;

To trace an attribute, use the following Umple code:

  class Student
  {
    name;
    trace name;
  }
Clone this wiki locally