Design/ZE2 migration note: If PHP would support nested classes. All the phing/parser/*Filter classes would be nested within this class
Показать файл Открыть проект Примеры использования классаМетод | Описание | |
---|---|---|
__construct ( AbstractSAXParser $parser, AbstractHandler $parentHandler, ProjectConfigurator $configurator, Target $target = null ) | Constructs a new DataTypeHandler and sets up everything. | |
characters ( $data ) | Handles character data. | |
endElement ( $name ) : void | Overrides endElement for data types. Tells the type handler that processing the element had been finished so handlers know they can perform actions that need to be based on the data contained within the element. | |
init ( $propType, $attrs ) | Executes initialization actions required to setup the data structures related to the tag. | |
startElement ( $name, $attrs ) | Checks for nested tags within the current one. Creates and calls handlers respectively. |
public __construct ( AbstractSAXParser $parser, AbstractHandler $parentHandler, ProjectConfigurator $configurator, Target $target = null ) | ||
$parser | AbstractSAXParser | The XML parser (default: ExpatParser) |
$parentHandler | AbstractHandler | The parent handler that invoked this handler. |
$configurator | ProjectConfigurator | The ProjectConfigurator object |
$target | Target | The target object this datatype is contained in (null for top-level datatypes). |
public endElement ( $name ) : void | ||
Результат | void |
This includes:
public init ( $propType, $attrs ) |
public startElement ( $name, $attrs ) |