forked from actframework/actframework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectLayoutBuilder.java
More file actions
157 lines (130 loc) · 3.5 KB
/
ProjectLayoutBuilder.java
File metadata and controls
157 lines (130 loc) · 3.5 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package act.boot;
/*-
* #%L
* ACT Framework
* %%
* Copyright (C) 2014 - 2017 ActFramework
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import act.app.ProjectLayout;
import java.io.File;
import java.util.List;
import java.util.Map;
/**
* Helper to build {@link ProjectLayout}
*/
public class ProjectLayoutBuilder implements ProjectLayout {
private String src;
private String tstSrc;
private String rsrc;
private String tstRsrc;
private String lib;
private String tstLib;
private String tgt;
private String routeTable;
private String conf;
private ProjectLayout _layout;
private void _refresh() {
_layout = toLayout();
}
public ProjectLayoutBuilder source(String src) {
this.src = src;
_refresh();
return this;
}
public ProjectLayoutBuilder testSource(String s) {
this.tstSrc = s;
_refresh();
return this;
}
public ProjectLayoutBuilder resource(String rsrc) {
this.rsrc = rsrc;
_refresh();
return this;
}
public ProjectLayoutBuilder testResource(String s) {
this.tstRsrc = s;
_refresh();
return this;
}
public ProjectLayoutBuilder lib(String lib) {
this.lib = lib;
_refresh();
return this;
}
public ProjectLayoutBuilder testLib(String s) {
this.tstLib = s;
_refresh();
return this;
}
public ProjectLayoutBuilder target(String tgt) {
this.tgt = tgt;
_refresh();
return this;
}
public ProjectLayoutBuilder routeTable(String routeTable) {
this.routeTable = routeTable;
_refresh();
return this;
}
public ProjectLayoutBuilder conf(String conf) {
this.conf = conf;
_refresh();
return this;
}
@Override
public File source(File appBase) {
return _layout.source(appBase);
}
@Override
public File testSource(File appBase) {
return _layout.testSource(appBase);
}
@Override
public File resource(File appBase) {
return _layout.resource(appBase);
}
@Override
public File testResource(File appBase) {
return _layout.testResource(appBase);
}
@Override
public String classes() {
return _layout.classes();
}
@Override
public File lib(File appBase) {
return _layout.lib(appBase);
}
@Override
public File testLib(File appBase) {
return _layout.testLib(appBase);
}
@Override
public File target(File appBase) {
return _layout.target(appBase);
}
@Override
public Map<String, List<File>> routeTables(File appBase) {
return _layout.routeTables(appBase);
}
@Override
public File conf(File appBase) {
return _layout.conf(appBase);
}
public ProjectLayout toLayout() {
return new ProjectLayout.CustomizedProjectLayout(src, tstSrc, rsrc, tstRsrc, lib, tstLib, tgt, routeTable, conf);
}
}