File tree Expand file tree Collapse file tree 3 files changed +38
-1
lines changed Expand file tree Collapse file tree 3 files changed +38
-1
lines changed Original file line number Diff line number Diff line change
1
+ @startuml
2
+ package com . iluwatar . composemethod {
3
+ class AddImpl {
4
+ - DEFAULT_NUMBER : int {static}
5
+ + AddImpl ()
6
+ + addPositiveNodesOriginal(head : Node) : int {static}
7
+ + addPositiveNodesRefined(head : Node) : int {static}
8
+ + grow(nums : int[]) : int {static}
9
+ + isPositive(a : int) : boolean {static}
10
+ + lengthDetect(tail : Node) : boolean {static}
11
+ + nextNode(tail : Node) : Node {static}
12
+ + nodeDetect(tail : Node) : boolean {static}
13
+ + numGrow(adder : int) : int {static}
14
+ + numberGrowth(tail : Node) : int {static}
15
+ }
16
+ class App {
17
+ - LOGGER : Logger {static}
18
+ + App ()
19
+ + main(args : String[]) {static}
20
+ }
21
+ class Node {
22
+ ~ next : Node
23
+ ~ nums : int[]
24
+ + Node ()
25
+ }
26
+ }
27
+ Node --> "- next " Node
28
+ @enduml
Original file line number Diff line number Diff line change 18
18
<scope >test</scope >
19
19
</dependency >
20
20
</dependencies >
21
-
21
+ <packaging >pom</packaging >
22
+ <build >
23
+ <plugins >
24
+ <plugin >
25
+ <groupId >org.apache.maven.plugins</groupId >
26
+ <artifactId >maven-assembly-plugin</artifactId >
27
+ </plugin >
28
+ </plugins >
29
+ </build >
22
30
<properties >
23
31
<maven .compiler.source>11</maven .compiler.source>
24
32
<maven .compiler.target>11</maven .compiler.target>
Original file line number Diff line number Diff line change 224
224
<module >parameter-object</module >
225
225
<module >active-object</module >
226
226
<module >model-view-viewmodel</module >
227
+ <module >compose-method</module >
227
228
</modules >
228
229
229
230
<repositories >
You can’t perform that action at this time.
0 commit comments