diff --git a/tls/etc/tls.urm.puml b/tls/etc/tls.urm.puml new file mode 100644 index 000000000..6425b7d33 --- /dev/null +++ b/tls/etc/tls.urm.puml @@ -0,0 +1,28 @@ +@startuml +package com.iluwatar.tls { + class App { + ~ dateList : List {static} + ~ exceptionList : List {static} + + App() + + main(args : String[]) {static} + } + class AppUgly { + ~ dateList : List {static} + ~ exceptionList : List {static} + + AppUgly() + + main(args : String[]) {static} + } + class DateFormatRunnable { + - dateValue : String + - df : ThreadLocal + + DateFormatRunnable(inDateFormat : String, inDateValue : String) + + run() + } + class DateFormatUglyRunnable { + - dateValue : String + - df : DateFormat + + DateFormatUglyRunnable(inDateFormat : String, inDateValue : String) + + run() + } +} +@enduml \ No newline at end of file