google-code-export / umple

Automatically exported from code.google.com/p/umple
1 stars 0 forks source link

Abstract methods should be rendered in italics in a class diagram #631

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
In the following I would like to see m appear in italics or have the abstract 
stereotype

class X {
  abstract;
  abstract void m();
}

class Passenger {
  name;
}

class Flight {
  number;
}

class Booking {
  seatNumber;
  * -- 1 Passenger;
  * -- 1 Flight;
}

Original issue reported on code.google.com by TimothyCLethbridge on 19 Sep 2014 at 4:38

GoogleCodeExporter commented 9 years ago
Should apply to graphviz as well as editable class diagrams. Probaby better to 
use italics, although «abstract» might be clearer but more messy. Experiment 
with both.

Original comment by TimothyCLethbridge on 21 Sep 2014 at 1:54