<?php
require_once 'TextInterface.php';

class 
PlainText implements TextInterface
{
    private 
$_textString null;

    public function 
getText()
    {
        return 
$this->_textString;
    }

    public function 
setText($str)
    {
        
$this->_textString $str;
    }
}