1 | public void setIncludeantruntime(boolean include) {↵ | | 1 | public void setIncludeantruntime(boolean include) {↵
|
2 | includeAntRuntime = include;↵ | | 2 | includeAntRuntime = include;↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Gets whether or not the ant classpath is to be included in the↵ | | 5 | * Gets whether or not the ant classpath is to be included in the↵
|
6 | classpath.↵ | | 6 | * task's classpath.↵
|
7 | * @return whether or not the ant classpath is to be included in the classpath↵ | | 7 | * @return true if ant's classpath is to be included↵
|
8 | */↵ | | 8 | */↵
|
9 | public boolean getIncludeantruntime() {↵ | | 9 | public boolean getIncludeantruntime() {↵
|
10 | return includeAntRuntime;↵ | | 10 | return includeAntRuntime;↵
|
11 | }↵ | | 11 | }↵
|
|
12 | /**↵ | | 12 | /**↵
|
13 | * If true,↵ | | 13 | * task's classpath.↵
|
14 | includes the Java runtime↵ | | 14 | * Enables or disables including the default run-time↵
|
15 | libraries in the classpath.↵ | | 15 | * libraries from the executing VM; optional,↵
|
| | | 16 | * defaults to false↵
|
16 | * @param include if true, includes the Java runtime libraries in the classpath↵ | | 17 | * @param include if true include default run-time libraries↵
|
17 | */↵ | | 18 | */↵
|
18 | public void setIncludejavaruntime(boolean include) {↵ | | 19 | public void setIncludejavaruntime(boolean include) {↵
|
19 | includeJavaRuntime = include;↵ | | 20 | includeJavaRuntime = include;↵
|
20 | }↵ | | 21 | }↵
|
|
21 | /**↵ | | 22 | /**↵
|
22 | * Gets whether or not the java runtime should be included in this↵ | | 23 | * Gets whether or not the java runtime should be included in this↵
|
23 | * task's classpath.↵ | | 24 | * task's classpath.↵
|
24 | * @return the includejavaruntime attribute↵ | | 25 | * @return true if default run-time libraries are included↵
|
25 | */↵ | | 26 | */↵
|
26 | public boolean getIncludejavaruntime() {↵ | | 27 | public boolean getIncludejavaruntime() {↵
|
27 | return includeJavaRuntime | | 28 | return includeJavaRuntime
|