nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | @startuml |
2 | |||
3 | abstract class AbstractList |
||
4 | abstract AbstractCollection |
||
5 | interface List |
||
6 | interface Collection |
||
7 | |||
8 | List <|-- AbstractList |
||
9 | Collection <|-- AbstractCollection |
||
10 | |||
11 | Collection <|- List |
||
12 | AbstractCollection <|- AbstractList |
||
13 | AbstractList <|-- ArrayList |
||
14 | |||
15 | class ArrayList { |
||
16 | Object[] elementData |
||
17 | size() |
||
18 | } |
||
19 | |||
20 | enum TimeUnit { |
||
21 | DAYS |
||
22 | HOURS |
||
23 | MINUTES |
||
24 | } |
||
25 | |||
26 | @enduml |