19 lines
365 B
Plaintext
19 lines
365 B
Plaintext
@startuml
|
|
package com.iluwatar.resource.acquisition.is.initialization {
|
|
class App {
|
|
- LOGGER : Logger {static}
|
|
+ App()
|
|
+ main(args : String[]) {static}
|
|
}
|
|
class SlidingDoor {
|
|
- LOGGER : Logger {static}
|
|
+ SlidingDoor()
|
|
+ close()
|
|
}
|
|
class TreasureChest {
|
|
- LOGGER : Logger {static}
|
|
+ TreasureChest()
|
|
+ close()
|
|
}
|
|
}
|
|
@enduml |