forked from actframework/actframework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyProjectLayoutProbe.java
More file actions
executable file
·75 lines (61 loc) · 1.61 KB
/
MyProjectLayoutProbe.java
File metadata and controls
executable file
·75 lines (61 loc) · 1.61 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
package playground;
import act.ActComponent;
import act.app.BuildFileProbe;
import act.app.ProjectLayout;
import act.plugin.Plugin;
import java.io.File;
/**
* Created by luog on 7/02/2015.
*/
@ActComponent
public class MyProjectLayoutProbe extends BuildFileProbe.FileParser implements Plugin {
@Override
public String buildFileName() {
return "myproj.layout";
}
@Override
protected ProjectLayout parse(File file) {
return new ProjectLayout() {
@Override
public File source(File appBase) {
return null;
}
@Override
public File testSource(File appBase) {
return null;
}
@Override
public File testResource(File appBase) {
return null;
}
@Override
public File testLib(File appBase) {
return null;
}
@Override
public File resource(File appBase) {
return null;
}
@Override
public File lib(File appBase) {
return null;
}
@Override
public File asset(File appBase) {
return null;
}
@Override
public File target(File appBase) {
return null;
}
@Override
public File routeTable(File appBase) {
return null;
}
@Override
public File conf(File appBase) {
return null;
}
};
}
}