java-design-patterns/guarded-suspension/etc/guarded-suspension.urm.puml
NooBxGockeL c2a7b902a9 Work on #190: urm/puml updates
* added pumlid where it was missing and possible
* removed pumlid where it generated a bad image
* regenerated some incorrect puml's
* added 'left to right direction' puml prefix to some diagrams to improve the automatic layouting
2017-03-25 22:07:10 +01:00

15 lines
286 B
Plaintext

@startuml
package com.iluwatar.guarded.suspension {
class App {
+ App()
+ main(args : String[]) {static}
}
class GuardedQueue {
- LOGGER : Logger {static}
- sourceList : Queue<Integer>
+ GuardedQueue()
+ get() : Integer
+ put(e : Integer)
}
}
@enduml