UI: Refactored file structure in carkot/ui/scripts

This commit is contained in:
dsavvinov
2016-08-26 16:18:50 +03:00
parent 63652dab0b
commit 655b745487
6 changed files with 0 additions and 220 deletions
-220
View File
@@ -1,220 +0,0 @@
/**
* @fileoverview
* @enhanceable
* @public
*/
// GENERATED CODE -- DO NOT EDIT!
var jspb = require('google-protobuf');
var goog = jspb;
var global = Function('return this')();
goog.exportSymbol('proto.Waypoints', null, global);
/**
* 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.Waypoints = function(opt_data) {
jspb.Message.initialize(this, opt_data, 0, -1, proto.Waypoints.repeatedFields_, null);
};
goog.inherits(proto.Waypoints, jspb.Message);
if (goog.DEBUG && !COMPILED) {
proto.Waypoints.displayName = 'proto.Waypoints';
}
/**
* List of repeated fields within this message type.
* @private {!Array<number>}
* @const
*/
proto.Waypoints.repeatedFields_ = [1,2];
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}
*/
proto.Waypoints.prototype.toObject = function(opt_includeInstance) {
return proto.Waypoints.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
* @param {!proto.Waypoints} msg The msg instance to transform.
* @return {!Object}
*/
proto.Waypoints.toObject = function(includeInstance, msg) {
var f, obj = {
xList: jspb.Message.getField(msg, 1),
yList: jspb.Message.getField(msg, 2)
};
if (includeInstance) {
obj.$jspbMessageInstance = msg;
}
return obj;
};
}
/**
* Deserializes binary data (in protobuf wire format).
* @param {jspb.ByteSource} bytes The bytes to deserialize.
* @return {!proto.Waypoints}
*/
proto.Waypoints.deserializeBinary = function(bytes) {
var reader = new jspb.BinaryReader(bytes);
var msg = new proto.Waypoints;
return proto.Waypoints.deserializeBinaryFromReader(msg, reader);
};
/**
* Deserializes binary data (in protobuf wire format) from the
* given reader into the given message object.
* @param {!proto.Waypoints} msg The message object to deserialize into.
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
* @return {!proto.Waypoints}
*/
proto.Waypoints.deserializeBinaryFromReader = function(msg, reader) {
while (reader.nextField()) {
if (reader.isEndGroup()) {
break;
}
var field = reader.getFieldNumber();
switch (field) {
case 1:
var value = /** @type {!Array.<number>} */ (reader.readPackedInt32());
msg.setXList(value);
break;
case 2:
var value = /** @type {!Array.<number>} */ (reader.readPackedInt32());
msg.setYList(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.
* @param {!proto.Waypoints} message
* @param {!jspb.BinaryWriter} writer
*/
proto.Waypoints.serializeBinaryToWriter = function(message, writer) {
message.serializeBinaryToWriter(writer);
};
/**
* Serializes the message to binary data (in protobuf wire format).
* @return {!Uint8Array}
*/
proto.Waypoints.prototype.serializeBinary = function() {
var writer = new jspb.BinaryWriter();
this.serializeBinaryToWriter(writer);
return writer.getResultBuffer();
};
/**
* Serializes the message to binary data (in protobuf wire format),
* writing to the given BinaryWriter.
* @param {!jspb.BinaryWriter} writer
*/
proto.Waypoints.prototype.serializeBinaryToWriter = function (writer) {
var f = undefined;
f = this.getXList();
if (f.length > 0) {
writer.writePackedInt32(
1,
f
);
}
f = this.getYList();
if (f.length > 0) {
writer.writePackedInt32(
2,
f
);
}
};
/**
* Creates a deep clone of this proto. No data is shared with the original.
* @return {!proto.Waypoints} The clone.
*/
proto.Waypoints.prototype.cloneMessage = function() {
return /** @type {!proto.Waypoints} */ (jspb.Message.cloneMessage(this));
};
/**
* repeated int32 x = 1;
* If you change this array by adding, removing or replacing elements, or if you
* replace the array itself, then you must call the setter to update it.
* @return {!Array.<number>}
*/
proto.Waypoints.prototype.getXList = function() {
return /** @type {!Array.<number>} */ (jspb.Message.getField(this, 1));
};
/** @param {Array.<number>} value */
proto.Waypoints.prototype.setXList = function(value) {
jspb.Message.setField(this, 1, value || []);
};
proto.Waypoints.prototype.clearXList = function() {
jspb.Message.setField(this, 1, []);
};
/**
* repeated int32 y = 2;
* If you change this array by adding, removing or replacing elements, or if you
* replace the array itself, then you must call the setter to update it.
* @return {!Array.<number>}
*/
proto.Waypoints.prototype.getYList = function() {
return /** @type {!Array.<number>} */ (jspb.Message.getField(this, 2));
};
/** @param {Array.<number>} value */
proto.Waypoints.prototype.setYList = function(value) {
jspb.Message.setField(this, 2, value || []);
};
proto.Waypoints.prototype.clearYList = function() {
jspb.Message.setField(this, 2, []);
};
goog.object.extend(exports, proto);