mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 00:58:24 +00:00
Add files via upload
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
@startuml
|
||||
package com.iluwatar.tls {
|
||||
class App {
|
||||
~ dateList : List<Date> {static}
|
||||
~ exceptionList : List<String> {static}
|
||||
+ App()
|
||||
+ main(args : String[]) {static}
|
||||
}
|
||||
class AppUgly {
|
||||
~ dateList : List<Date> {static}
|
||||
~ exceptionList : List<String> {static}
|
||||
+ AppUgly()
|
||||
+ main(args : String[]) {static}
|
||||
}
|
||||
class DateFormatRunnable {
|
||||
- dateValue : String
|
||||
- df : ThreadLocal<DateFormat>
|
||||
+ DateFormatRunnable(inDateFormat : String, inDateValue : String)
|
||||
+ run()
|
||||
}
|
||||
class DateFormatUglyRunnable {
|
||||
- dateValue : String
|
||||
- df : DateFormat
|
||||
+ DateFormatUglyRunnable(inDateFormat : String, inDateValue : String)
|
||||
+ run()
|
||||
}
|
||||
}
|
||||
@enduml
|
||||
Reference in New Issue
Block a user