149 lines
4.7 KiB
Cheetah
Raw Normal View History

// GENERATED CODE -- DO NOT EDIT!
{{$Package:=.File.Package}}
var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
{{range .File.MessageType}}
2016-12-19 15:43:38 +01:00
goog.exportSymbol('proto.{{$Package}}.{{.Name}}', null, global);{{end}}
{{range .File.MessageType}}
/**
* @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
*/
2016-12-19 15:43:38 +01:00
proto.{{$Package}}.{{.Name}} = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
};
2016-12-19 15:43:38 +01:00
goog.inherits(proto.{{$Package}}.{{.Name}}, jspb.Message);
if (goog.DEBUG && !COMPILED) {
2016-12-19 15:43:38 +01:00
proto.{{$Package}}.{{.Name}}.displayName = 'proto.{{$Package}}.{{.Name}}';
}
if (jspb.Message.GENERATE_TO_OBJECT) {
/**
* Creates an object representation of this proto suitable for use in Soy templates.
* Field names that are reserved in JavaScript and will be renamed to pb_name.
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
* For the list of reserved names please see:
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
* for transitional soy proto support: http://goto/soy-param-migration
* @return {!Object}
*/
2016-12-19 15:43:38 +01:00
proto.{{$Package}}.{{.Name}}.prototype.toObject = function(opt_includeInstance) {
return proto.{{$Package}}.{{.Name}}.toObject(opt_includeInstance, this);
};
/**
* Static version of the {@see toObject} method.
* @param {boolean|undefined} includeInstance Whether to include the JSPB
* instance for transitional soy proto support:
* http://goto/soy-param-migration
2016-12-19 15:43:38 +01:00
* @param {!proto.{{$Package}}.{{.Name}}} msg The msg instance to transform.
* @return {!Object}
*/
2016-12-19 15:43:38 +01:00
proto.{{$Package}}.{{.Name}}.toObject = function(includeInstance, msg) {
var f, obj = {
2016-12-19 15:43:38 +01:00
name: jspb.Message.getFieldWithDefault(msg, 1, "")
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
2016-12-19 15:43:38 +01:00
* @return {!proto.{{$Package}}.{{.Name}}}
*/
2016-12-19 15:43:38 +01:00
proto.{{$Package}}.{{.Name}}.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
2016-12-19 15:43:38 +01:00
var msg = new proto.{{$Package}}.{{.Name}};
return proto.{{$Package}}.{{.Name}}.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
2016-12-19 15:43:38 +01:00
* @param {!proto.{{$Package}}.{{.Name}}} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
2016-12-19 15:43:38 +01:00
* @return {!proto.{{$Package}}.{{.Name}}}
*/
2016-12-19 15:43:38 +01:00
proto.{{$Package}}.{{.Name}}.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
2016-12-19 15:43:38 +01:00
var value = /** @type {string} */ (reader.readString());
msg.setName(value);
break;
default:
reader.skipField();
break;
}
}
return msg;
};
/**
* Class method variant: serializes the given message to binary data
* (in protobuf wire format), writing to the given BinaryWriter.
2016-12-19 15:43:38 +01:00
* @param {!proto.{{$Package}}.{{.Name}}} message
* @param {!jspb.BinaryWriter} writer
*/
2016-12-19 15:43:38 +01:00
proto.{{$Package}}.{{.Name}}.serializeBinaryToWriter = function(message, writer) {
message.serializeBinaryToWriter(writer);
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
2016-12-19 15:43:38 +01:00
proto.{{$Package}}.{{.Name}}.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
this.serializeBinaryToWriter(writer);
return writer.getResultBuffer();
};
2016-12-19 15:43:38 +01:00
{{range .Field}}
/**
* Serializes the message to binary data (in protobuf wire format),
* writing to the given BinaryWriter.
* @param {!jspb.BinaryWriter} writer
*/
2016-12-19 15:43:38 +01:00
proto.{{$Package}}.{{.Name}}.prototype.serializeBinaryToWriter = function (writer) {
var f = undefined;
2016-12-19 15:43:38 +01:00
f = this.get{{.Name | upperFirst}}();
if (f.length > 0) {
writer.writeString(
1,
2016-12-19 15:43:38 +01:00
f
);
}
};
/**
2016-12-19 15:43:38 +01:00
* optional string name = 1;
* @return {string}
*/
2016-12-19 15:43:38 +01:00
proto.{{$Package}}.{{.Name}}.prototype.get{{.Name | upperFirst}} = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
};
2016-12-19 15:43:38 +01:00
/** @param {string} value */
proto.{{$Package}}.{{.Name}}.prototype.set{{.Name | upperFirst}} = function(value) {
jspb.Message.setField(this, 1, value);
};
2016-12-19 15:43:38 +01:00
{{end}}{{end}}
goog.object.extend(exports, proto.{{$Package}});