-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuml.txt
76 lines (62 loc) · 1.62 KB
/
uml.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@startuml
' definitions
' -----------
' package "com.ztools.textlineprocessor"
interface ILineProcessor
class Main
class TLPer
' end package
' package "com.ztools.textlineprocessor.def"
class Plantuml
class PrintLine
class GroupMediaFile
class WordSplit
class EnglishExamination
class EnglishTest
' end package
' content
' -------
' TLPer:
TLPer --> "*" ILineProcessor
TLPer : void read(InputStream, Object)
TLPer : void read(InputStream, String, Object)
TLPer : void read(InputStream)
TLPer : void read(File)
TLPer : void read(String)
' EnglishTest:
ILineProcessor <|.. EnglishTest
EnglishTest : void beforeRead()
EnglishTest : void process(String, Object)
EnglishTest : void afterRead()
' Plantuml:
ILineProcessor <|.. Plantuml
Plantuml : void beforeRead()
Plantuml : void process(String, Object)
Plantuml : void afterRead()
' WordSplit:
ILineProcessor <|.. WordSplit
WordSplit : void beforeRead()
WordSplit : void process(String, Object)
WordSplit : void afterRead()
' GroupMediaFile:
ILineProcessor <|.. GroupMediaFile
GroupMediaFile : void beforeRead()
GroupMediaFile : void process(String, Object)
GroupMediaFile : void afterRead()
' Main:
Main : void main(String)
' PrintLine:
ILineProcessor <|.. PrintLine
PrintLine : void process(String, Object)
PrintLine : void beforeRead()
PrintLine : void afterRead()
' ILineProcessor:
ILineProcessor : void process(String, Object)
ILineProcessor : void beforeRead()
ILineProcessor : void afterRead()
' EnglishExamination:
ILineProcessor <|.. EnglishExamination
EnglishExamination : void beforeRead()
EnglishExamination : void process(String, Object)
EnglishExamination : void afterRead()
@enduml