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
|
|
/**
|
21
|
|
* Helper class that implements the nested <reference>
|
22
|
|
* element of <phing> and <phingcall>.
|
23
|
|
*
|
24
|
|
* @package phing.tasks.system
|
25
|
|
*/
|
26
|
|
class PhingReference extends Reference
|
27
|
|
{
|
28
|
|
private $targetid = null;
|
29
|
|
|
30
|
|
/**
|
31
|
|
* Set the id that this reference to be stored under in the
|
32
|
|
* new project.
|
33
|
|
*
|
34
|
|
* @param string $targetid The id under which this reference will be passed to the new project
|
35
|
|
*/
|
36
|
0
|
public function setToRefid($targetid)
|
37
|
|
{
|
38
|
0
|
$this->targetid = $targetid;
|
39
|
|
}
|
40
|
|
|
41
|
|
/**
|
42
|
|
* Get the id under which this reference will be stored in the new
|
43
|
|
* project
|
44
|
|
*
|
45
|
|
* @return string the id of the reference in the new project.
|
46
|
|
*/
|
47
|
0
|
public function getToRefid()
|
48
|
|
{
|
49
|
0
|
return $this->targetid;
|
50
|
|
}
|
51
|
|
}
|