rv.data.Graphics.Path.Shape.Arrow */ class Arrow extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field .rv.data.Graphics.Point corner = 1; */ protected $corner = null; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Rv\Data\Graphics\Point $corner * } */ public function __construct($data = NULL) { \GPBMetadata\GraphicsData::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .rv.data.Graphics.Point corner = 1; * @return \Rv\Data\Graphics\Point|null */ public function getCorner() { return $this->corner; } public function hasCorner() { return isset($this->corner); } public function clearCorner() { unset($this->corner); } /** * Generated from protobuf field .rv.data.Graphics.Point corner = 1; * @param \Rv\Data\Graphics\Point $var * @return $this */ public function setCorner($var) { GPBUtil::checkMessage($var, \Rv\Data\Graphics\Point::class); $this->corner = $var; return $this; } }