2020-05-01 16:37:13 +08:00

290 lines
7.3 KiB
JavaScript

// source: test.proto
/**
* @fileoverview
* @enhanceable
* @suppress {messageConventions} JS Compiler reports an error if a variable or
* field starts with 'MSG_' and isn't a translatable message.
* @public
*/
// GENERATED CODE -- DO NOT EDIT!
goog.provide('proto.example.Test');
goog.require('jspb.BinaryReader');
goog.require('jspb.BinaryWriter');
goog.require('jspb.Message');
/**
* Generated by JsPbCodeGenerator.
* @param {Array=} opt_data Optional initial data array, typically from a
* server response, or constructed directly in Javascript. The array is used
* in place and becomes part of the constructed object. It is not cloned.
* If no data is provided, the constructed object will be empty, but still
* valid.
* @extends {jspb.Message}
* @constructor
*/
proto.example.Test = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.example.Test.repeatedFields_, null);
};
goog.inherits(proto.example.Test, jspb.Message);
if (goog.DEBUG && !COMPILED) {
/**
* @public
* @override
*/
proto.example.Test.displayName = 'proto.example.Test';
}
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.example.Test.repeatedFields_ = [3];
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* Optional fields that are not set will be set to undefined.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
* JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @return {!Object}
*/
proto.example.Test.prototype.toObject = function(opt_includeInstance) {
return proto.example.Test.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
* the JSPB instance for transitional soy proto support:
* http://goto/soy-param-migration
* @param {!proto.example.Test} msg The msg instance to transform.
* @return {!Object}
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.example.Test.toObject = function(includeInstance, msg) {
var f, obj = {
label: (f = jspb.Message.getField(msg, 1)) == null ? undefined : f,
type: jspb.Message.getFieldWithDefault(msg, 2, 77),
repsList: (f = jspb.Message.getRepeatedField(msg, 3)) == null ? undefined : f
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.example.Test}
*/
proto.example.Test.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.example.Test;
return proto.example.Test.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.example.Test} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.example.Test}
*/
proto.example.Test.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {string} */ (reader.readString());
msg.setLabel(value);
break;
case 2:
var value = /** @type {number} */ (reader.readInt32());
msg.setType(value);
break;
case 3:
var value = /** @type {number} */ (reader.readInt64());
msg.addReps(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.example.Test.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
proto.example.Test.serializeBinaryToWriter(this, writer);
return writer.getResultBuffer();
};
/**
* Serializes the given message to binary data (in protobuf wire
* format), writing to the given BinaryWriter.
* @param {!proto.example.Test} message
* @param {!jspb.BinaryWriter} writer
* @suppress {unusedLocalVariables} f is only used for nested messages
*/
proto.example.Test.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = /** @type {string} */ (jspb.Message.getField(message, 1));
if (f != null) {
writer.writeString(
1,
f
);
}
f = /** @type {number} */ (jspb.Message.getField(message, 2));
if (f != null) {
writer.writeInt32(
2,
f
);
}
f = message.getRepsList();
if (f.length > 0) {
writer.writeRepeatedInt64(
3,
f
);
}
};
/**
* required string label = 1;
* @return {string}
*/
proto.example.Test.prototype.getLabel = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
};
/**
* @param {string} value
* @return {!proto.example.Test} returns this
*/
proto.example.Test.prototype.setLabel = function(value) {
return jspb.Message.setField(this, 1, value);
};
/**
* Clears the field making it undefined.
* @return {!proto.example.Test} returns this
*/
proto.example.Test.prototype.clearLabel = function() {
return jspb.Message.setField(this, 1, undefined);
};
/**
* Returns whether this field is set.
* @return {boolean}
*/
proto.example.Test.prototype.hasLabel = function() {
return jspb.Message.getField(this, 1) != null;
};
/**
* optional int32 type = 2;
* @return {number}
*/
proto.example.Test.prototype.getType = function() {
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 77));
};
/**
* @param {number} value
* @return {!proto.example.Test} returns this
*/
proto.example.Test.prototype.setType = function(value) {
return jspb.Message.setField(this, 2, value);
};
/**
* Clears the field making it undefined.
* @return {!proto.example.Test} returns this
*/
proto.example.Test.prototype.clearType = function() {
return jspb.Message.setField(this, 2, undefined);
};
/**
* Returns whether this field is set.
* @return {boolean}
*/
proto.example.Test.prototype.hasType = function() {
return jspb.Message.getField(this, 2) != null;
};
/**
* repeated int64 reps = 3;
* @return {!Array<number>}
*/
proto.example.Test.prototype.getRepsList = function() {
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 3));
};
/**
* @param {!Array<number>} value
* @return {!proto.example.Test} returns this
*/
proto.example.Test.prototype.setRepsList = function(value) {
return jspb.Message.setField(this, 3, value || []);
};
/**
* @param {number} value
* @param {number=} opt_index
* @return {!proto.example.Test} returns this
*/
proto.example.Test.prototype.addReps = function(value, opt_index) {
return jspb.Message.addToRepeatedField(this, 3, value, opt_index);
};
/**
* Clears the list making it empty but non-null.
* @return {!proto.example.Test} returns this
*/
proto.example.Test.prototype.clearRepsList = function() {
return this.setRepsList([]);
};