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
|
|
* @package phing.system.lang
|
22
|
|
*/
|
23
|
|
class EventObject
|
24
|
|
{
|
25
|
|
|
26
|
|
/**
|
27
|
|
* The object on which the Event initially occurred.
|
28
|
|
*/
|
29
|
|
protected $source;
|
30
|
|
|
31
|
|
/**
|
32
|
|
* Constructs a prototypical Event.
|
33
|
|
*
|
34
|
|
* @param $source
|
35
|
|
* @throws Exception
|
36
|
|
*/
|
37
|
1
|
public function __construct($source)
|
38
|
|
{
|
39
|
1
|
if ($source === null) {
|
40
|
1
|
throw new Exception("Null source");
|
41
|
|
}
|
42
|
1
|
$this->source = $source;
|
43
|
|
}
|
44
|
|
|
45
|
|
/**
|
46
|
|
* The object on which the Event initially occurred.
|
47
|
|
*/
|
48
|
1
|
public function getSource()
|
49
|
|
{
|
50
|
1
|
return $this->source;
|
51
|
|
}
|
52
|
|
|
53
|
|
/**
|
54
|
|
* Returns a String representation of this EventObject.
|
55
|
|
*/
|
56
|
1
|
public function __toString()
|
57
|
|
{
|
58
|
1
|
if (method_exists($this->getSource(), "toString")) {
|
59
|
0
|
return get_class($this) . "[source=" . $this->getSource()->toString() . "]";
|
60
|
|
}
|
61
|
|
|
62
|
1
|
if (method_exists($this->getSource(), "__toString")) {
|
63
|
1
|
return get_class($this) . "[source=" . $this->getSource() . "]";
|
64
|
|
}
|
65
|
|
|
66
|
1
|
return get_class($this) . "[source=" . get_class($this->getSource()) . "]";
|
67
|
|
}
|
68
|
|
}
|