Свойство | Тип | Описание | |
---|---|---|---|
$initialized | Have the parameters passed been interpreted? | ||
$project | The Phing project this filter is part of. |
Метод | Описание | |
---|---|---|
__construct ( Reader $in = null ) | Constructor used by Phing's introspection mechanism. | |
eof ( ) : boolean | Returns whether the end of file has been reached with input stream. | |
getInitialized ( ) : boolean | Returns the initialized status. | |
getProject ( ) : object | Returns the project this filter is part of. | |
log ( string $msg, integer $level = Project::MSG_INFO ) | Convenience method to support logging in filters. | |
read ( $len = null ) : Characters | Reads characters. | |
readLine ( ) : the | Reads a line of text ending with '\n' (or until the end of the stream). | |
setInitialized ( boolean $initialized ) | Sets the initialized status. | |
setProject ( Project $project ) | Sets the project to work with. |
public __construct ( Reader $in = null ) | ||
$in | Reader |
public getInitialized ( ) : boolean | ||
Результат | boolean | whether or not the filter is initialized |
public getProject ( ) : object | ||
Результат | object | The project this filter is part of |
public read ( $len = null ) : Characters | ||
Результат | Characters | read, or -1 if the end of the stream has been reached |
public readLine ( ) : the | ||
Результат | the | line read, or null if the end of the
stream has already been reached |
public setInitialized ( boolean $initialized ) | ||
$initialized | boolean | Whether or not the filter is initialized. |
public setProject ( Project $project ) | ||
$project | Project | The project this filter is part of.
Should not be null . |
protected $initialized |