The task handler class.
This class handles the occurance of a
author | Andreas Aderhold |
---|---|
copyright | 2001,2002 THYRELL. All rights reserved |
version | $Id: 8704afedf66d22d6f4bfcfe3bad6a05d5c818e30 $ |
package | phing.parser |
__construct(\AbstractSAXParser $parser, object $parentHandler, \ProjectConfigurator $configurator, \TaskContainer $container, \RuntimeConfigurable $parentWrapper, \Target $target)
The constructor must be called by all derived classes.
object
The parent handler that invoked this handler
\ProjectConfigurator
characters(string $data)
string
The CDATA that comes in
endElement(string $name)
Can be overloaded by the child class. But should not. It hands over control to the parentHandler of this.
inherited_from | \AbstractHandler::endElement() |
---|
string
the name of the XML element
init(string $tag, array $attrs)
<
p> This includes:
string
The tag that comes in
array
Attributes the tag carries
\ExpatParseException |
if attributes are incomplete or invalid |
---|
startElement(string $name, array $attrs)
Creates and calls handlers respectively.
string
The tag that comes in
array
Attributes the tag carries
finished()
$parentHandler
inherited_from | \AbstractHandler::$$parentHandler |
---|
$parser
inherited_from | \AbstractHandler::$$parser |
---|
$configurator : \ProjectConfigurator
$container : object
This must not necessarily be a target, hence extra variable.
$parentWrapper : \RuntimeConfigurable
The wrapper for this element will be added to this wrapper as a child.
$target : object
$task : \Task
$wrapper
Otherwise the configuration is performed with the configure method.
see | \global\ProjectHelper::configure(Object,AttributeList,Project) |
---|