1
|
|
<?php
|
2
|
|
/**
|
3
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
4
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
5
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
6
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
7
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
8
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
9
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
10
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
11
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
12
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
13
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
14
|
|
*
|
15
|
|
* This software consists of voluntary contributions made by many individuals
|
16
|
|
* and is licensed under the LGPL. For more information please see
|
17
|
|
* <http://phing.info>.
|
18
|
|
*/
|
19
|
|
|
20
|
|
trait ClasspathAware
|
21
|
|
{
|
22
|
|
/**
|
23
|
|
* @var Path $classpath
|
24
|
|
*/
|
25
|
|
protected $classpath;
|
26
|
|
|
27
|
|
/**
|
28
|
|
* Refid to already defined classpath
|
29
|
|
*/
|
30
|
|
protected $classpathId;
|
31
|
|
|
32
|
|
/**
|
33
|
|
* Returns the classpath.
|
34
|
|
*
|
35
|
|
* @return Path|null
|
36
|
|
*/
|
37
|
0
|
public function getClasspath(): ?\Path
|
38
|
|
{
|
39
|
0
|
return $this->classpath;
|
40
|
|
}
|
41
|
|
|
42
|
|
/**
|
43
|
|
* @param Path $classpath
|
44
|
|
*
|
45
|
|
* @throws \BuildException
|
46
|
|
*/
|
47
|
1
|
public function setClasspath(Path $classpath): void
|
48
|
|
{
|
49
|
1
|
if ($this->classpath === null) {
|
50
|
1
|
$this->classpath = $classpath;
|
51
|
|
} else {
|
52
|
0
|
$this->classpath->append($classpath);
|
53
|
|
}
|
54
|
|
}
|
55
|
|
|
56
|
|
/**
|
57
|
|
* @return Path
|
58
|
|
*
|
59
|
|
* @throws \BuildException
|
60
|
|
*/
|
61
|
1
|
public function createClasspath(): \Path
|
62
|
|
{
|
63
|
1
|
if ($this->classpath === null) {
|
64
|
1
|
$this->classpath = new Path();
|
65
|
|
}
|
66
|
|
|
67
|
1
|
return $this->classpath->createPath();
|
68
|
|
}
|
69
|
|
|
70
|
|
/**
|
71
|
|
* Reference to a classpath to use when loading the files.
|
72
|
|
*
|
73
|
|
* @param Reference $r
|
74
|
|
*
|
75
|
|
* @throws BuildException
|
76
|
|
*/
|
77
|
0
|
public function setClasspathRef(Reference $r): void
|
78
|
|
{
|
79
|
0
|
$this->classpathId = $r->getRefId();
|
80
|
0
|
$this->createClasspath()->setRefid($r);
|
81
|
|
}
|
82
|
|
}
|