141 lines
2.9 KiB
PHP
141 lines
2.9 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: testPattern.proto
|
|
|
|
namespace Rv\Data\TestPatternDefinition;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.TestPatternDefinition.IntProperty</code>
|
|
*/
|
|
class IntProperty extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>int32 value = 1;</code>
|
|
*/
|
|
protected $value = 0;
|
|
/**
|
|
* Generated from protobuf field <code>int32 min = 2;</code>
|
|
*/
|
|
protected $min = 0;
|
|
/**
|
|
* Generated from protobuf field <code>int32 max = 3;</code>
|
|
*/
|
|
protected $max = 0;
|
|
/**
|
|
* Generated from protobuf field <code>string units = 5;</code>
|
|
*/
|
|
protected $units = '';
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type int $value
|
|
* @type int $min
|
|
* @type int $max
|
|
* @type string $units
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\TestPattern::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 value = 1;</code>
|
|
* @return int
|
|
*/
|
|
public function getValue()
|
|
{
|
|
return $this->value;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 value = 1;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setValue($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->value = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 min = 2;</code>
|
|
* @return int
|
|
*/
|
|
public function getMin()
|
|
{
|
|
return $this->min;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 min = 2;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setMin($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->min = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 max = 3;</code>
|
|
* @return int
|
|
*/
|
|
public function getMax()
|
|
{
|
|
return $this->max;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>int32 max = 3;</code>
|
|
* @param int $var
|
|
* @return $this
|
|
*/
|
|
public function setMax($var)
|
|
{
|
|
GPBUtil::checkInt32($var);
|
|
$this->max = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string units = 5;</code>
|
|
* @return string
|
|
*/
|
|
public function getUnits()
|
|
{
|
|
return $this->units;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>string units = 5;</code>
|
|
* @param string $var
|
|
* @return $this
|
|
*/
|
|
public function setUnits($var)
|
|
{
|
|
GPBUtil::checkString($var, True);
|
|
$this->units = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|