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,18 @@
@startuml
package com.iluwatar.halfsynchalfasync {
class AsynchronousService {
- service : ExecutorService
+ AsynchronousService(workQueue : BlockingQueue<Runnable>)
+ execute(task : AsyncTask<T>)
}
~class ArithmeticSumTask {
- n : long
+ ArithmeticSumTask(n : long)
+ call() : Long
+ onError(throwable : Throwable)
+ onPostCall(result : Long)
+ onPreCall()
}
class App {
+ App()
- ap(i : long) : long {static}
@ -11,19 +24,6 @@ package com.iluwatar.halfsynchalfasync {
+ onPostCall(O) {abstract}
+ onPreCall() {abstract}
}
~class ArithmeticSumTask {
- n : long
+ ArithmeticSumTask(n : long)
+ call() : Long
+ onError(throwable : Throwable)
+ onPostCall(result : Long)
+ onPreCall()
}
class AsynchronousService {
- service : ExecutorService
+ AsynchronousService(workQueue : BlockingQueue<Runnable>)
+ execute(task : AsyncTask<T>)
}
}
ArithmeticSumTask ..+ App
ArithmeticSumTask ..|> AsyncTask