UML generation: Mark the urm-maven-plugin execution to be ignored in Eclipse and recreate all .puml files

This commit is contained in:
Ilkka Seppälä
2016-09-18 17:51:09 +03:00
parent b030cd4eba
commit 6026eedd51
78 changed files with 1676 additions and 1609 deletions

View File

@ -1,19 +1,24 @@
@startuml
package com.iluwatar.delegation.simple.printers {
class EpsonPrinter {
+ EpsonPrinter()
+ print(message : String)
}
class HpPrinter {
+ HpPrinter()
+ print(message : String)
}
class EpsonPrinter {
+ EpsonPrinter()
+ print(message : String)
}
class CanonPrinter {
+ CanonPrinter()
+ print(message : String)
}
}
package com.iluwatar.delegation.simple {
class App {
+ MESSAGE_TO_PRINT : String {static}
+ App()
+ main(args : String[]) {static}
}
class PrinterController {
- printer : Printer
+ PrinterController(printer : Printer)
@ -22,15 +27,10 @@ package com.iluwatar.delegation.simple {
interface Printer {
+ print(String) {abstract}
}
class App {
+ MESSAGE_TO_PRINT : String {static}
+ App()
+ main(args : String[]) {static}
}
}
PrinterController --> "-printer" Printer
HpPrinter ..|> Printer
PrinterController ..|> Printer
EpsonPrinter ..|> Printer
HpPrinter ..|> Printer
CanonPrinter ..|> Printer
@enduml