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,5 +1,9 @@
@startuml
package com.iluwatar.business.delegate {
class EjbService {
+ EjbService()
+ doProcessing()
}
class BusinessLookup {
- ejbService : EjbService
- jmsService : JmsService
@ -8,15 +12,18 @@ package com.iluwatar.business.delegate {
+ setEjbService(ejbService : EjbService)
+ setJmsService(jmsService : JmsService)
}
class App {
+ App()
+ main(args : String[]) {static}
}
interface BusinessService {
+ doProcessing() {abstract}
}
class Client {
- businessDelegate : BusinessDelegate
+ Client(businessDelegate : BusinessDelegate)
+ doTask()
}
class EjbService {
+ EjbService()
+ doProcessing()
}
class BusinessDelegate {
- businessService : BusinessService
- lookupService : BusinessLookup
@ -26,17 +33,10 @@ package com.iluwatar.business.delegate {
+ setLookupService(businessLookup : BusinessLookup)
+ setServiceType(serviceType : ServiceType)
}
interface BusinessService {
+ doProcessing() {abstract}
}
class JmsService {
+ JmsService()
+ doProcessing()
}
class App {
+ App()
+ main(args : String[]) {static}
}
enum ServiceType {
+ EJB {static}
+ JMS {static}