2016-08-30 13:29:12 +02:00
|
|
|
@startuml
|
|
|
|
package com.iluwatar.resource.acquisition.is.initialization {
|
|
|
|
class App {
|
2016-11-26 12:51:06 +01:00
|
|
|
- LOGGER : Logger {static}
|
2016-08-30 13:29:12 +02:00
|
|
|
+ App()
|
|
|
|
+ main(args : String[]) {static}
|
|
|
|
}
|
|
|
|
class SlidingDoor {
|
2016-11-26 12:51:06 +01:00
|
|
|
- LOGGER : Logger {static}
|
2016-08-30 13:29:12 +02:00
|
|
|
+ SlidingDoor()
|
|
|
|
+ close()
|
|
|
|
}
|
2016-09-18 17:51:09 +03:00
|
|
|
class TreasureChest {
|
2016-11-26 12:51:06 +01:00
|
|
|
- LOGGER : Logger {static}
|
2016-09-18 17:51:09 +03:00
|
|
|
+ TreasureChest()
|
|
|
|
+ close()
|
|
|
|
}
|
2016-08-30 13:29:12 +02:00
|
|
|
}
|
|
|
|
@enduml
|