Skip to content

Commit 15913d6

Browse files
authored
Add files via upload
new uml diagramm after changes to the java classes
1 parent 65e0479 commit 15913d6

File tree

3 files changed

+102
-0
lines changed

3 files changed

+102
-0
lines changed

tls/etc/tls.png

33.7 KB
Loading

tls/etc/tls.ucls

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<class-diagram version="1.1.13" icons="true" always-add-relationships="false" generalizations="true" realizations="true"
3+
associations="true" dependencies="false" nesting-relationships="true" router="FAN">
4+
<class id="1" language="java" name="com.iluwatar.tls.DateFormatCallable" project="PatternIluwatar"
5+
file="/PatternIluwatar/src/main/java/com/iluwatar/tls/DateFormatCallable.java" binary="false" corner="BOTTOM_RIGHT">
6+
<position height="-1" width="-1" x="503" y="227"/>
7+
<display autosize="true" stereotype="true" package="true" initial-value="false" signature="true"
8+
sort-features="false" accessors="true" visibility="true">
9+
<attributes public="true" package="true" protected="true" private="true" static="true"/>
10+
<operations public="true" package="true" protected="true" private="true" static="true"/>
11+
</display>
12+
</class>
13+
<interface id="2" language="java" name="java.util.concurrent.Callable" project="Intros"
14+
file="C:/interne/Programme/jdk8u60x64/jre/lib/rt.jar" binary="true" corner="BOTTOM_RIGHT">
15+
<position height="-1" width="-1" x="501" y="52"/>
16+
<display autosize="true" stereotype="true" package="true" initial-value="false" signature="true"
17+
sort-features="false" accessors="true" visibility="true">
18+
<attributes public="true" package="true" protected="true" private="true" static="true"/>
19+
<operations public="true" package="true" protected="true" private="true" static="true"/>
20+
</display>
21+
</interface>
22+
<class id="3" language="java" name="java.lang.ThreadLocal" project="Intros"
23+
file="C:/interne/Programme/jdk8u60x64/jre/lib/rt.jar" binary="true" corner="BOTTOM_RIGHT">
24+
<position height="-1" width="-1" x="111" y="284"/>
25+
<display autosize="true" stereotype="true" package="true" initial-value="false" signature="true"
26+
sort-features="false" accessors="true" visibility="true">
27+
<attributes public="true" package="true" protected="true" private="true" static="true"/>
28+
<operations public="true" package="true" protected="true" private="true" static="true"/>
29+
</display>
30+
</class>
31+
<class id="4" language="java" name="com.iluwatar.tls.App" project="PatternIluwatar"
32+
file="/PatternIluwatar/src/main/java/com/iluwatar/tls/App.java" binary="false" corner="BOTTOM_RIGHT">
33+
<position height="-1" width="-1" x="845" y="228"/>
34+
<display autosize="true" stereotype="true" package="true" initial-value="false" signature="true"
35+
sort-features="false" accessors="true" visibility="true">
36+
<attributes public="true" package="true" protected="true" private="true" static="true"/>
37+
<operations public="true" package="true" protected="true" private="true" static="true"/>
38+
</display>
39+
</class>
40+
<class id="5" language="java" name="com.iluwatar.tls.Result" project="PatternIluwatar"
41+
file="/PatternIluwatar/src/main/java/com/iluwatar/tls/Result.java" binary="false" corner="BOTTOM_RIGHT">
42+
<position height="-1" width="-1" x="673" y="459"/>
43+
<display autosize="true" stereotype="true" package="true" initial-value="false" signature="true"
44+
sort-features="false" accessors="true" visibility="true">
45+
<attributes public="true" package="true" protected="true" private="true" static="true"/>
46+
<operations public="true" package="true" protected="true" private="true" static="true"/>
47+
</display>
48+
</class>
49+
<dependency id="6">
50+
<end type="SOURCE" refId="1"/>
51+
<end type="TARGET" refId="5"/>
52+
</dependency>
53+
<association id="7">
54+
<end type="SOURCE" refId="1" navigable="false">
55+
<attribute id="8" name="df"/>
56+
<multiplicity id="9" minimum="0" maximum="1"/>
57+
</end>
58+
<end type="TARGET" refId="3" navigable="true"/>
59+
<display labels="true" multiplicity="true"/>
60+
</association>
61+
<realization id="10">
62+
<end type="SOURCE" refId="1"/>
63+
<end type="TARGET" refId="2"/>
64+
</realization>
65+
<dependency id="11">
66+
<end type="SOURCE" refId="4"/>
67+
<end type="TARGET" refId="5"/>
68+
</dependency>
69+
<dependency id="12">
70+
<end type="SOURCE" refId="4"/>
71+
<end type="TARGET" refId="1"/>
72+
</dependency>
73+
<classifier-display autosize="true" stereotype="true" package="true" initial-value="false" signature="true"
74+
sort-features="false" accessors="true" visibility="true">
75+
<attributes public="true" package="true" protected="true" private="true" static="true"/>
76+
<operations public="true" package="true" protected="true" private="true" static="true"/>
77+
</classifier-display>
78+
<association-display labels="true" multiplicity="true"/>
79+
</class-diagram>

tls/etc/tls.urm.puml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
@startuml
2+
package com.iluwatar.tls {
3+
class App {
4+
+ App()
5+
+ main(args : String[]) {static}
6+
- printAndCountDates(res : Result) : int {static}
7+
- printAndCountExceptions(res : Result) : int {static}
8+
}
9+
class DateFormatCallable {
10+
- dateValue : String
11+
- df : ThreadLocal<DateFormat>
12+
+ DateFormatCallable(inDateFormat : String, inDateValue : String)
13+
+ call() : Result
14+
}
15+
class Result {
16+
- dateList : List<Date>
17+
- exceptionList : List<String>
18+
+ Result()
19+
+ getDateList() : List<Date>
20+
+ getExceptionList() : List<String>
21+
}
22+
}
23+
@enduml

0 commit comments

Comments
 (0)