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
|
|
* This selector has one other selectors whose meaning it inverts. It
|
22
|
|
* actually relies on NoneSelector for its implementation of the
|
23
|
|
* isSelected() method, but it adds a check to ensure there is only one
|
24
|
|
* other selector contained within.
|
25
|
|
*
|
26
|
|
* @author Hans Lellelid <hans@xmpl.org> (Phing)
|
27
|
|
* @author Bruce Atherton <bruce@callenish.com> (Ant)
|
28
|
|
* @package phing.types.selectors
|
29
|
|
*/
|
30
|
|
class NotSelector extends NoneSelector
|
31
|
|
{
|
32
|
|
|
33
|
|
/**
|
34
|
|
* @return string
|
35
|
|
*/
|
36
|
0
|
public function __toString()
|
37
|
|
{
|
38
|
0
|
$buf = "";
|
39
|
0
|
if ($this->hasSelectors()) {
|
40
|
0
|
$buf .= "{notselect: ";
|
41
|
0
|
$buf .= parent::__toString();
|
42
|
0
|
$buf .= "}";
|
43
|
|
}
|
44
|
|
|
45
|
0
|
return $buf;
|
46
|
|
}
|
47
|
|
|
48
|
|
/**
|
49
|
|
* Makes sure that there is only one entry, sets an error message if
|
50
|
|
* not.
|
51
|
|
*/
|
52
|
0
|
public function verifySettings()
|
53
|
|
{
|
54
|
0
|
if ($this->count() !== 1) {
|
55
|
0
|
$this->setError(
|
56
|
|
"One and only one selector is allowed within the " .
|
57
|
0
|
"<not> tag"
|
58
|
|
);
|
59
|
|
}
|
60
|
|
}
|
61
|
|
}
|