textStartCursor = null; $this->textEndCursor = null; } /** * Stores the text from the source code using the $textStartCursor and * $textEndCursor and stores the result in the $text property. */ public function storeText() { $this->text = $this->textStartCursor->subString( $this->textEndCursor->position ); } } ?>