    %getterComment%
    public function get%PropertyName%()
    {
        if(is_null($this->%propertyName%)){
            $this->%propertyName% = new %StructureName%(
                $this->getActualDate()
            );
        }
        return $this->%propertyName%;
    }
