1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
// Copyright 2008 The Closure Library Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS-IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// All other code copyright its respective owners(s).
/**
* @fileoverview Generated Protocol Buffer code for file
* closure/goog/proto2/package_test.proto.
*/
goog.provide('someprotopackage.TestPackageTypes');
goog.setTestOnly('someprotopackage.TestPackageTypes');
goog.require('goog.proto2.Message');
goog.require('proto2.TestAllTypes');
/**
* Message TestPackageTypes.
* @constructor
* @extends {goog.proto2.Message}
* @final
*/
someprotopackage.TestPackageTypes = function() {
goog.proto2.Message.call(this);
};
goog.inherits(someprotopackage.TestPackageTypes, goog.proto2.Message);
/**
* Descriptor for this message, deserialized lazily in getDescriptor().
* @private {?goog.proto2.Descriptor}
*/
someprotopackage.TestPackageTypes.descriptor_ = null;
/**
* Overrides {@link goog.proto2.Message#clone} to specify its exact return type.
* @return {!someprotopackage.TestPackageTypes} The cloned message.
* @override
*/
someprotopackage.TestPackageTypes.prototype.clone;
/**
* Gets the value of the optional_int32 field.
* @return {?number} The value.
*/
someprotopackage.TestPackageTypes.prototype.getOptionalInt32 = function() {
return /** @type {?number} */ (this.get$Value(1));
};
/**
* Gets the value of the optional_int32 field or the default value if not set.
* @return {number} The value.
*/
someprotopackage.TestPackageTypes.prototype.getOptionalInt32OrDefault = function() {
return /** @type {number} */ (this.get$ValueOrDefault(1));
};
/**
* Sets the value of the optional_int32 field.
* @param {number} value The value.
*/
someprotopackage.TestPackageTypes.prototype.setOptionalInt32 = function(value) {
this.set$Value(1, value);
};
/**
* @return {boolean} Whether the optional_int32 field has a value.
*/
someprotopackage.TestPackageTypes.prototype.hasOptionalInt32 = function() {
return this.has$Value(1);
};
/**
* @return {number} The number of values in the optional_int32 field.
*/
someprotopackage.TestPackageTypes.prototype.optionalInt32Count = function() {
return this.count$Values(1);
};
/**
* Clears the values in the optional_int32 field.
*/
someprotopackage.TestPackageTypes.prototype.clearOptionalInt32 = function() {
this.clear$Field(1);
};
/**
* Gets the value of the other_all field.
* @return {?proto2.TestAllTypes} The value.
*/
someprotopackage.TestPackageTypes.prototype.getOtherAll = function() {
return /** @type {?proto2.TestAllTypes} */ (this.get$Value(2));
};
/**
* Gets the value of the other_all field or the default value if not set.
* @return {!proto2.TestAllTypes} The value.
*/
someprotopackage.TestPackageTypes.prototype.getOtherAllOrDefault = function() {
return /** @type {!proto2.TestAllTypes} */ (this.get$ValueOrDefault(2));
};
/**
* Sets the value of the other_all field.
* @param {!proto2.TestAllTypes} value The value.
*/
someprotopackage.TestPackageTypes.prototype.setOtherAll = function(value) {
this.set$Value(2, value);
};
/**
* @return {boolean} Whether the other_all field has a value.
*/
someprotopackage.TestPackageTypes.prototype.hasOtherAll = function() {
return this.has$Value(2);
};
/**
* @return {number} The number of values in the other_all field.
*/
someprotopackage.TestPackageTypes.prototype.otherAllCount = function() {
return this.count$Values(2);
};
/**
* Clears the values in the other_all field.
*/
someprotopackage.TestPackageTypes.prototype.clearOtherAll = function() {
this.clear$Field(2);
};
/** @override */
someprotopackage.TestPackageTypes.prototype.getDescriptor = function() {
var descriptor = someprotopackage.TestPackageTypes.descriptor_;
if (!descriptor) {
// The descriptor is created lazily when we instantiate a new instance.
var descriptorObj = {
0: {
name: 'TestPackageTypes',
fullName: 'someprotopackage.TestPackageTypes'
},
1: {
name: 'optional_int32',
fieldType: goog.proto2.Message.FieldType.INT32,
type: Number
},
2: {
name: 'other_all',
fieldType: goog.proto2.Message.FieldType.MESSAGE,
type: proto2.TestAllTypes
}
};
someprotopackage.TestPackageTypes.descriptor_ = descriptor =
goog.proto2.Message.createDescriptor(
someprotopackage.TestPackageTypes, descriptorObj);
}
return descriptor;
};
/** @nocollapse */
someprotopackage.TestPackageTypes.getDescriptor =
someprotopackage.TestPackageTypes.prototype.getDescriptor;
|