From 487f9ddc80f20dc93e69c86ea866845b95f70e36 Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 16 Dec 2016 09:42:08 +0100 Subject: [PATCH] Add files via upload --- tls/etc/tls.urm.puml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tls/etc/tls.urm.puml 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