ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
Text.php
Go to the documentation of this file.
1 <?php
2 
13 {
14 
15  public $name = '#PCDATA';
16  public $data;
17  public $is_whitespace;
24  public function __construct($data, $line = null, $col = null) {
25  $this->data = $data;
26  $this->is_whitespace = ctype_space($data);
27  $this->line = $line;
28  $this->col = $col;
29  }
30 
31 }
32 
33 // vim: et sw=4 sts=4