2017-01-06 00:57:47 +01:00
|
|
|
@startuml
|
|
|
|
package com.iluwatar.guarded.suspension {
|
2017-03-25 22:07:10 +01:00
|
|
|
class App {
|
|
|
|
+ App()
|
|
|
|
+ main(args : String[]) {static}
|
|
|
|
}
|
2017-01-06 00:57:47 +01:00
|
|
|
class GuardedQueue {
|
|
|
|
- LOGGER : Logger {static}
|
|
|
|
- sourceList : Queue<Integer>
|
|
|
|
+ GuardedQueue()
|
|
|
|
+ get() : Integer
|
|
|
|
+ put(e : Integer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@enduml
|