rv.data.TestPatternDocument.TestPatternData.FontProperty */ class FontProperty extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field .rv.data.Font value = 1; */ protected $value = null; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Rv\Data\Font $value * } */ public function __construct($data = NULL) { \GPBMetadata\TestPattern::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .rv.data.Font value = 1; * @return \Rv\Data\Font|null */ public function getValue() { return $this->value; } public function hasValue() { return isset($this->value); } public function clearValue() { unset($this->value); } /** * Generated from protobuf field .rv.data.Font value = 1; * @param \Rv\Data\Font $var * @return $this */ public function setValue($var) { GPBUtil::checkMessage($var, \Rv\Data\Font::class); $this->value = $var; return $this; } }