Skip to content

Commit 487f9dd

Browse files
authored
Add files via upload
1 parent 9b7ce55 commit 487f9dd

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

tls/etc/tls.urm.puml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
@startuml
2+
package com.iluwatar.tls {
3+
class App {
4+
~ dateList : List<Date> {static}
5+
~ exceptionList : List<String> {static}
6+
+ App()
7+
+ main(args : String[]) {static}
8+
}
9+
class AppUgly {
10+
~ dateList : List<Date> {static}
11+
~ exceptionList : List<String> {static}
12+
+ AppUgly()
13+
+ main(args : String[]) {static}
14+
}
15+
class DateFormatRunnable {
16+
- dateValue : String
17+
- df : ThreadLocal<DateFormat>
18+
+ DateFormatRunnable(inDateFormat : String, inDateValue : String)
19+
+ run()
20+
}
21+
class DateFormatUglyRunnable {
22+
- dateValue : String
23+
- df : DateFormat
24+
+ DateFormatUglyRunnable(inDateFormat : String, inDateValue : String)
25+
+ run()
26+
}
27+
}
28+
@enduml

0 commit comments

Comments
 (0)