Commit 582927ae authored by Hao Nguyen's avatar Hao Nguyen

Update generated files

parent 88339fa7
...@@ -1194,6 +1194,9 @@ namespace Google.Protobuf.Reflection { ...@@ -1194,6 +1194,9 @@ namespace Google.Protobuf.Reflection {
private readonly static int StartDefaultValue = 0; private readonly static int StartDefaultValue = 0;
private int start_; private int start_;
/// <summary>
/// Inclusive.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int Start { public int Start {
get { if ((_hasBits0 & 1) != 0) { return start_; } else { return StartDefaultValue; } } get { if ((_hasBits0 & 1) != 0) { return start_; } else { return StartDefaultValue; } }
...@@ -1218,6 +1221,9 @@ namespace Google.Protobuf.Reflection { ...@@ -1218,6 +1221,9 @@ namespace Google.Protobuf.Reflection {
private readonly static int EndDefaultValue = 0; private readonly static int EndDefaultValue = 0;
private int end_; private int end_;
/// <summary>
/// Exclusive.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int End { public int End {
get { if ((_hasBits0 & 2) != 0) { return end_; } else { return EndDefaultValue; } } get { if ((_hasBits0 & 2) != 0) { return end_; } else { return EndDefaultValue; } }
......
...@@ -16,11 +16,15 @@ use Google\Protobuf\Internal\GPBUtil; ...@@ -16,11 +16,15 @@ use Google\Protobuf\Internal\GPBUtil;
class ExtensionRange extends \Google\Protobuf\Internal\Message class ExtensionRange extends \Google\Protobuf\Internal\Message
{ {
/** /**
* Inclusive.
*
* Generated from protobuf field <code>optional int32 start = 1;</code> * Generated from protobuf field <code>optional int32 start = 1;</code>
*/ */
private $start = 0; private $start = 0;
private $has_start = false; private $has_start = false;
/** /**
* Exclusive.
*
* Generated from protobuf field <code>optional int32 end = 2;</code> * Generated from protobuf field <code>optional int32 end = 2;</code>
*/ */
private $end = 0; private $end = 0;
...@@ -38,7 +42,9 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message ...@@ -38,7 +42,9 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message
* Optional. Data for populating the Message object. * Optional. Data for populating the Message object.
* *
* @type int $start * @type int $start
* Inclusive.
* @type int $end * @type int $end
* Exclusive.
* @type \Google\Protobuf\Internal\ExtensionRangeOptions $options * @type \Google\Protobuf\Internal\ExtensionRangeOptions $options
* } * }
*/ */
...@@ -48,6 +54,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message ...@@ -48,6 +54,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message
} }
/** /**
* Inclusive.
*
* Generated from protobuf field <code>optional int32 start = 1;</code> * Generated from protobuf field <code>optional int32 start = 1;</code>
* @return int * @return int
*/ */
...@@ -57,6 +65,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message ...@@ -57,6 +65,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message
} }
/** /**
* Inclusive.
*
* Generated from protobuf field <code>optional int32 start = 1;</code> * Generated from protobuf field <code>optional int32 start = 1;</code>
* @param int $var * @param int $var
* @return $this * @return $this
...@@ -76,6 +86,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message ...@@ -76,6 +86,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message
} }
/** /**
* Exclusive.
*
* Generated from protobuf field <code>optional int32 end = 2;</code> * Generated from protobuf field <code>optional int32 end = 2;</code>
* @return int * @return int
*/ */
...@@ -85,6 +97,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message ...@@ -85,6 +97,8 @@ class ExtensionRange extends \Google\Protobuf\Internal\Message
} }
/** /**
* Exclusive.
*
* Generated from protobuf field <code>optional int32 end = 2;</code> * Generated from protobuf field <code>optional int32 end = 2;</code>
* @param int $var * @param int $var
* @return $this * @return $this
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment