Changeset 31905 in osm for applications/editors/josm/plugins/pbf/gen/com
- Timestamp:
- 2016-01-02T01:30:50+01:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/pbf
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
gen/com/google/protobuf/DescriptorProtos.java (modified) (975 diffs)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pbf
- Property svn:externals
-
old new 1 1 proto https://github.com/scrosby/OSM-binary/trunk/src 2 protobuf http ://protobuf.googlecode.com/svn/tags/2.6.0/src/google/protobuf/2 protobuf https://github.com/google/protobuf/tags/v2.6.1/src/google/protobuf/
-
- Property svn:externals
-
applications/editors/josm/plugins/pbf/gen/com/google/protobuf/DescriptorProtos.java
r30737 r31905 16 16 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 17 17 */ 18 java.util.List<com.google.protobuf.DescriptorProtos.FileDescriptorProto> 18 java.util.List<com.google.protobuf.DescriptorProtos.FileDescriptorProto> 19 19 getFileList(); 20 20 /** … … 29 29 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 30 30 */ 31 java.util.List<? extends com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder> 31 java.util.List<? extends com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder> 32 32 getFileOrBuilderList(); 33 33 /** … … 61 61 } 62 62 63 public FileDescriptorSet getDefaultInstanceForType() { 63 @Override 64 public FileDescriptorSet getDefaultInstanceForType() { 64 65 return defaultInstance; 65 66 } … … 122 123 } 123 124 124 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 125 @Override 126 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 125 127 internalGetFieldAccessorTable() { 126 128 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FileDescriptorSet_fieldAccessorTable … … 131 133 public static com.google.protobuf.Parser<FileDescriptorSet> PARSER = 132 134 new com.google.protobuf.AbstractParser<FileDescriptorSet>() { 133 public FileDescriptorSet parsePartialFrom( 135 @Override 136 public FileDescriptorSet parsePartialFrom( 134 137 com.google.protobuf.CodedInputStream input, 135 138 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 149 152 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 150 153 */ 151 public java.util.List<com.google.protobuf.DescriptorProtos.FileDescriptorProto> getFileList() { 154 @Override 155 public java.util.List<com.google.protobuf.DescriptorProtos.FileDescriptorProto> getFileList() { 152 156 return file_; 153 157 } … … 155 159 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 156 160 */ 157 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder> 161 @Override 162 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder> 158 163 getFileOrBuilderList() { 159 164 return file_; … … 162 167 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 163 168 */ 164 public int getFileCount() { 169 @Override 170 public int getFileCount() { 165 171 return file_.size(); 166 172 } … … 168 174 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 169 175 */ 170 public com.google.protobuf.DescriptorProtos.FileDescriptorProto getFile(int index) { 176 @Override 177 public com.google.protobuf.DescriptorProtos.FileDescriptorProto getFile(int index) { 171 178 return file_.get(index); 172 179 } … … 174 181 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 175 182 */ 176 public com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder getFileOrBuilder( 183 @Override 184 public com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder getFileOrBuilder( 177 185 int index) { 178 186 return file_.get(index); … … 183 191 } 184 192 private byte memoizedIsInitialized = -1; 185 public final boolean isInitialized() { 193 @Override 194 public final boolean isInitialized() { 186 195 byte isInitialized = memoizedIsInitialized; 187 196 if (isInitialized == 1) return true; … … 198 207 } 199 208 200 public void writeTo(com.google.protobuf.CodedOutputStream output) 209 @Override 210 public void writeTo(com.google.protobuf.CodedOutputStream output) 201 211 throws java.io.IOException { 202 212 getSerializedSize(); … … 208 218 209 219 private int memoizedSerializedSize = -1; 210 public int getSerializedSize() { 220 @Override 221 public int getSerializedSize() { 211 222 int size = memoizedSerializedSize; 212 223 if (size != -1) return size; … … 283 294 284 295 public static Builder newBuilder() { return Builder.create(); } 285 public Builder newBuilderForType() { return newBuilder(); } 296 @Override 297 public Builder newBuilderForType() { return newBuilder(); } 286 298 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.FileDescriptorSet prototype) { 287 299 return newBuilder().mergeFrom(prototype); 288 300 } 289 public Builder toBuilder() { return newBuilder(this); } 301 @Override 302 public Builder toBuilder() { return newBuilder(this); } 290 303 291 304 @java.lang.Override … … 312 325 } 313 326 314 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 327 @Override 328 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 315 329 internalGetFieldAccessorTable() { 316 330 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FileDescriptorSet_fieldAccessorTable … … 338 352 } 339 353 340 public Builder clear() { 354 @Override 355 public Builder clear() { 341 356 super.clear(); 342 357 if (fileBuilder_ == null) { … … 349 364 } 350 365 351 public Builder clone() { 366 @Override 367 public Builder clone() { 352 368 return create().mergeFrom(buildPartial()); 353 369 } 354 370 355 public com.google.protobuf.Descriptors.Descriptor 371 @Override 372 public com.google.protobuf.Descriptors.Descriptor 356 373 getDescriptorForType() { 357 374 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FileDescriptorSet_descriptor; 358 375 } 359 376 360 public com.google.protobuf.DescriptorProtos.FileDescriptorSet getDefaultInstanceForType() { 377 @Override 378 public com.google.protobuf.DescriptorProtos.FileDescriptorSet getDefaultInstanceForType() { 361 379 return com.google.protobuf.DescriptorProtos.FileDescriptorSet.getDefaultInstance(); 362 380 } 363 381 364 public com.google.protobuf.DescriptorProtos.FileDescriptorSet build() { 382 @Override 383 public com.google.protobuf.DescriptorProtos.FileDescriptorSet build() { 365 384 com.google.protobuf.DescriptorProtos.FileDescriptorSet result = buildPartial(); 366 385 if (!result.isInitialized()) { … … 370 389 } 371 390 372 public com.google.protobuf.DescriptorProtos.FileDescriptorSet buildPartial() { 391 @Override 392 public com.google.protobuf.DescriptorProtos.FileDescriptorSet buildPartial() { 373 393 com.google.protobuf.DescriptorProtos.FileDescriptorSet result = new com.google.protobuf.DescriptorProtos.FileDescriptorSet(this); 374 394 int from_bitField0_ = bitField0_; … … 386 406 } 387 407 388 public Builder mergeFrom(com.google.protobuf.Message other) { 408 @Override 409 public Builder mergeFrom(com.google.protobuf.Message other) { 389 410 if (other instanceof com.google.protobuf.DescriptorProtos.FileDescriptorSet) { 390 411 return mergeFrom((com.google.protobuf.DescriptorProtos.FileDescriptorSet)other); … … 415 436 file_ = other.file_; 416 437 bitField0_ = (bitField0_ & ~0x00000001); 417 fileBuilder_ = 438 fileBuilder_ = 418 439 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 419 440 getFileFieldBuilder() : null; … … 427 448 } 428 449 429 public final boolean isInitialized() { 450 @Override 451 public final boolean isInitialized() { 430 452 for (int i = 0; i < getFileCount(); i++) { 431 453 if (!getFile(i).isInitialized()) { 432 454 433 455 return false; 434 456 } … … 437 459 } 438 460 439 public Builder mergeFrom( 461 @Override 462 public Builder mergeFrom( 440 463 com.google.protobuf.CodedInputStream input, 441 464 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 471 494 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 472 495 */ 473 public java.util.List<com.google.protobuf.DescriptorProtos.FileDescriptorProto> getFileList() { 496 @Override 497 public java.util.List<com.google.protobuf.DescriptorProtos.FileDescriptorProto> getFileList() { 474 498 if (fileBuilder_ == null) { 475 499 return java.util.Collections.unmodifiableList(file_); … … 481 505 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 482 506 */ 483 public int getFileCount() { 507 @Override 508 public int getFileCount() { 484 509 if (fileBuilder_ == null) { 485 510 return file_.size(); … … 491 516 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 492 517 */ 493 public com.google.protobuf.DescriptorProtos.FileDescriptorProto getFile(int index) { 518 @Override 519 public com.google.protobuf.DescriptorProtos.FileDescriptorProto getFile(int index) { 494 520 if (fileBuilder_ == null) { 495 521 return file_.get(index); … … 641 667 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 642 668 */ 643 public com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder getFileOrBuilder( 669 @Override 670 public com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder getFileOrBuilder( 644 671 int index) { 645 672 if (fileBuilder_ == null) { … … 651 678 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 652 679 */ 653 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder> 680 @Override 681 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder> 654 682 getFileOrBuilderList() { 655 683 if (fileBuilder_ != null) { … … 677 705 * <code>repeated .google.protobuf.FileDescriptorProto file = 1;</code> 678 706 */ 679 public java.util.List<com.google.protobuf.DescriptorProtos.FileDescriptorProto.Builder> 707 public java.util.List<com.google.protobuf.DescriptorProtos.FileDescriptorProto.Builder> 680 708 getFileBuilderList() { 681 709 return getFileFieldBuilder().getBuilderList(); 682 710 } 683 711 private com.google.protobuf.RepeatedFieldBuilder< 684 com.google.protobuf.DescriptorProtos.FileDescriptorProto, com.google.protobuf.DescriptorProtos.FileDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder> 712 com.google.protobuf.DescriptorProtos.FileDescriptorProto, com.google.protobuf.DescriptorProtos.FileDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.FileDescriptorProtoOrBuilder> 685 713 getFileFieldBuilder() { 686 714 if (fileBuilder_ == null) { … … 857 885 * </pre> 858 886 */ 859 java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> 887 java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> 860 888 getMessageTypeList(); 861 889 /** … … 882 910 * </pre> 883 911 */ 884 java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 912 java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 885 913 getMessageTypeOrBuilderList(); 886 914 /** … … 897 925 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 898 926 */ 899 java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> 927 java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> 900 928 getEnumTypeList(); 901 929 /** … … 910 938 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 911 939 */ 912 java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 940 java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 913 941 getEnumTypeOrBuilderList(); 914 942 /** … … 921 949 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 922 950 */ 923 java.util.List<com.google.protobuf.DescriptorProtos.ServiceDescriptorProto> 951 java.util.List<com.google.protobuf.DescriptorProtos.ServiceDescriptorProto> 924 952 getServiceList(); 925 953 /** … … 934 962 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 935 963 */ 936 java.util.List<? extends com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder> 964 java.util.List<? extends com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder> 937 965 getServiceOrBuilderList(); 938 966 /** … … 945 973 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 946 974 */ 947 java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> 975 java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> 948 976 getExtensionList(); 949 977 /** … … 958 986 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 959 987 */ 960 java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 988 java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 961 989 getExtensionOrBuilderList(); 962 990 /** … … 1036 1064 } 1037 1065 1038 public FileDescriptorProto getDefaultInstanceForType() { 1066 @Override 1067 public FileDescriptorProto getDefaultInstanceForType() { 1039 1068 return defaultInstance; 1040 1069 } … … 1228 1257 } 1229 1258 1230 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 1259 @Override 1260 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 1231 1261 internalGetFieldAccessorTable() { 1232 1262 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FileDescriptorProto_fieldAccessorTable … … 1237 1267 public static com.google.protobuf.Parser<FileDescriptorProto> PARSER = 1238 1268 new com.google.protobuf.AbstractParser<FileDescriptorProto>() { 1239 public FileDescriptorProto parsePartialFrom( 1269 @Override 1270 public FileDescriptorProto parsePartialFrom( 1240 1271 com.google.protobuf.CodedInputStream input, 1241 1272 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 1260 1291 * </pre> 1261 1292 */ 1262 public boolean hasName() { 1293 @Override 1294 public boolean hasName() { 1263 1295 return ((bitField0_ & 0x00000001) == 0x00000001); 1264 1296 } … … 1270 1302 * </pre> 1271 1303 */ 1272 public java.lang.String getName() { 1304 @Override 1305 public java.lang.String getName() { 1273 1306 java.lang.Object ref = name_; 1274 1307 if (ref instanceof java.lang.String) { 1275 1308 return (java.lang.String) ref; 1276 1309 } else { 1277 com.google.protobuf.ByteString bs = 1310 com.google.protobuf.ByteString bs = 1278 1311 (com.google.protobuf.ByteString) ref; 1279 1312 java.lang.String s = bs.toStringUtf8(); … … 1291 1324 * </pre> 1292 1325 */ 1293 public com.google.protobuf.ByteString 1326 @Override 1327 public com.google.protobuf.ByteString 1294 1328 getNameBytes() { 1295 1329 java.lang.Object ref = name_; 1296 1330 if (ref instanceof java.lang.String) { 1297 com.google.protobuf.ByteString b = 1331 com.google.protobuf.ByteString b = 1298 1332 com.google.protobuf.ByteString.copyFromUtf8( 1299 1333 (java.lang.String) ref); … … 1314 1348 * </pre> 1315 1349 */ 1316 public boolean hasPackage() { 1350 @Override 1351 public boolean hasPackage() { 1317 1352 return ((bitField0_ & 0x00000002) == 0x00000002); 1318 1353 } … … 1324 1359 * </pre> 1325 1360 */ 1326 public java.lang.String getPackage() { 1361 @Override 1362 public java.lang.String getPackage() { 1327 1363 java.lang.Object ref = package_; 1328 1364 if (ref instanceof java.lang.String) { 1329 1365 return (java.lang.String) ref; 1330 1366 } else { 1331 com.google.protobuf.ByteString bs = 1367 com.google.protobuf.ByteString bs = 1332 1368 (com.google.protobuf.ByteString) ref; 1333 1369 java.lang.String s = bs.toStringUtf8(); … … 1345 1381 * </pre> 1346 1382 */ 1347 public com.google.protobuf.ByteString 1383 @Override 1384 public com.google.protobuf.ByteString 1348 1385 getPackageBytes() { 1349 1386 java.lang.Object ref = package_; 1350 1387 if (ref instanceof java.lang.String) { 1351 com.google.protobuf.ByteString b = 1388 com.google.protobuf.ByteString b = 1352 1389 com.google.protobuf.ByteString.copyFromUtf8( 1353 1390 (java.lang.String) ref); … … 1368 1405 * </pre> 1369 1406 */ 1370 public com.google.protobuf.ProtocolStringList 1407 @Override 1408 public com.google.protobuf.ProtocolStringList 1371 1409 getDependencyList() { 1372 1410 return dependency_; … … 1379 1417 * </pre> 1380 1418 */ 1381 public int getDependencyCount() { 1419 @Override 1420 public int getDependencyCount() { 1382 1421 return dependency_.size(); 1383 1422 } … … 1389 1428 * </pre> 1390 1429 */ 1391 public java.lang.String getDependency(int index) { 1430 @Override 1431 public java.lang.String getDependency(int index) { 1392 1432 return dependency_.get(index); 1393 1433 } … … 1399 1439 * </pre> 1400 1440 */ 1401 public com.google.protobuf.ByteString 1441 @Override 1442 public com.google.protobuf.ByteString 1402 1443 getDependencyBytes(int index) { 1403 1444 return dependency_.getByteString(index); … … 1413 1454 * </pre> 1414 1455 */ 1415 public java.util.List<java.lang.Integer> 1456 @Override 1457 public java.util.List<java.lang.Integer> 1416 1458 getPublicDependencyList() { 1417 1459 return publicDependency_; … … 1424 1466 * </pre> 1425 1467 */ 1426 public int getPublicDependencyCount() { 1468 @Override 1469 public int getPublicDependencyCount() { 1427 1470 return publicDependency_.size(); 1428 1471 } … … 1434 1477 * </pre> 1435 1478 */ 1436 public int getPublicDependency(int index) { 1479 @Override 1480 public int getPublicDependency(int index) { 1437 1481 return publicDependency_.get(index); 1438 1482 } … … 1448 1492 * </pre> 1449 1493 */ 1450 public java.util.List<java.lang.Integer> 1494 @Override 1495 public java.util.List<java.lang.Integer> 1451 1496 getWeakDependencyList() { 1452 1497 return weakDependency_; … … 1460 1505 * </pre> 1461 1506 */ 1462 public int getWeakDependencyCount() { 1507 @Override 1508 public int getWeakDependencyCount() { 1463 1509 return weakDependency_.size(); 1464 1510 } … … 1471 1517 * </pre> 1472 1518 */ 1473 public int getWeakDependency(int index) { 1519 @Override 1520 public int getWeakDependency(int index) { 1474 1521 return weakDependency_.get(index); 1475 1522 } … … 1484 1531 * </pre> 1485 1532 */ 1486 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> getMessageTypeList() { 1533 @Override 1534 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> getMessageTypeList() { 1487 1535 return messageType_; 1488 1536 } … … 1494 1542 * </pre> 1495 1543 */ 1496 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 1544 @Override 1545 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 1497 1546 getMessageTypeOrBuilderList() { 1498 1547 return messageType_; … … 1505 1554 * </pre> 1506 1555 */ 1507 public int getMessageTypeCount() { 1556 @Override 1557 public int getMessageTypeCount() { 1508 1558 return messageType_.size(); 1509 1559 } … … 1515 1565 * </pre> 1516 1566 */ 1517 public com.google.protobuf.DescriptorProtos.DescriptorProto getMessageType(int index) { 1567 @Override 1568 public com.google.protobuf.DescriptorProtos.DescriptorProto getMessageType(int index) { 1518 1569 return messageType_.get(index); 1519 1570 } … … 1525 1576 * </pre> 1526 1577 */ 1527 public com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder getMessageTypeOrBuilder( 1578 @Override 1579 public com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder getMessageTypeOrBuilder( 1528 1580 int index) { 1529 1581 return messageType_.get(index); … … 1535 1587 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 1536 1588 */ 1537 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> getEnumTypeList() { 1589 @Override 1590 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> getEnumTypeList() { 1538 1591 return enumType_; 1539 1592 } … … 1541 1594 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 1542 1595 */ 1543 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 1596 @Override 1597 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 1544 1598 getEnumTypeOrBuilderList() { 1545 1599 return enumType_; … … 1548 1602 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 1549 1603 */ 1550 public int getEnumTypeCount() { 1604 @Override 1605 public int getEnumTypeCount() { 1551 1606 return enumType_.size(); 1552 1607 } … … 1554 1609 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 1555 1610 */ 1556 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto getEnumType(int index) { 1611 @Override 1612 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto getEnumType(int index) { 1557 1613 return enumType_.get(index); 1558 1614 } … … 1560 1616 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 1561 1617 */ 1562 public com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder getEnumTypeOrBuilder( 1618 @Override 1619 public com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder getEnumTypeOrBuilder( 1563 1620 int index) { 1564 1621 return enumType_.get(index); … … 1570 1627 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 1571 1628 */ 1572 public java.util.List<com.google.protobuf.DescriptorProtos.ServiceDescriptorProto> getServiceList() { 1629 @Override 1630 public java.util.List<com.google.protobuf.DescriptorProtos.ServiceDescriptorProto> getServiceList() { 1573 1631 return service_; 1574 1632 } … … 1576 1634 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 1577 1635 */ 1578 public java.util.List<? extends com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder> 1636 @Override 1637 public java.util.List<? extends com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder> 1579 1638 getServiceOrBuilderList() { 1580 1639 return service_; … … 1583 1642 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 1584 1643 */ 1585 public int getServiceCount() { 1644 @Override 1645 public int getServiceCount() { 1586 1646 return service_.size(); 1587 1647 } … … 1589 1649 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 1590 1650 */ 1591 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProto getService(int index) { 1651 @Override 1652 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProto getService(int index) { 1592 1653 return service_.get(index); 1593 1654 } … … 1595 1656 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 1596 1657 */ 1597 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder getServiceOrBuilder( 1658 @Override 1659 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder getServiceOrBuilder( 1598 1660 int index) { 1599 1661 return service_.get(index); … … 1605 1667 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 1606 1668 */ 1607 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getExtensionList() { 1669 @Override 1670 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getExtensionList() { 1608 1671 return extension_; 1609 1672 } … … 1611 1674 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 1612 1675 */ 1613 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 1676 @Override 1677 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 1614 1678 getExtensionOrBuilderList() { 1615 1679 return extension_; … … 1618 1682 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 1619 1683 */ 1620 public int getExtensionCount() { 1684 @Override 1685 public int getExtensionCount() { 1621 1686 return extension_.size(); 1622 1687 } … … 1624 1689 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 1625 1690 */ 1626 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getExtension(int index) { 1691 @Override 1692 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getExtension(int index) { 1627 1693 return extension_.get(index); 1628 1694 } … … 1630 1696 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 1631 1697 */ 1632 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getExtensionOrBuilder( 1698 @Override 1699 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getExtensionOrBuilder( 1633 1700 int index) { 1634 1701 return extension_.get(index); … … 1640 1707 * <code>optional .google.protobuf.FileOptions options = 8;</code> 1641 1708 */ 1642 public boolean hasOptions() { 1709 @Override 1710 public boolean hasOptions() { 1643 1711 return ((bitField0_ & 0x00000004) == 0x00000004); 1644 1712 } … … 1646 1714 * <code>optional .google.protobuf.FileOptions options = 8;</code> 1647 1715 */ 1648 public com.google.protobuf.DescriptorProtos.FileOptions getOptions() { 1716 @Override 1717 public com.google.protobuf.DescriptorProtos.FileOptions getOptions() { 1649 1718 return options_; 1650 1719 } … … 1652 1721 * <code>optional .google.protobuf.FileOptions options = 8;</code> 1653 1722 */ 1654 public com.google.protobuf.DescriptorProtos.FileOptionsOrBuilder getOptionsOrBuilder() { 1723 @Override 1724 public com.google.protobuf.DescriptorProtos.FileOptionsOrBuilder getOptionsOrBuilder() { 1655 1725 return options_; 1656 1726 } … … 1668 1738 * </pre> 1669 1739 */ 1670 public boolean hasSourceCodeInfo() { 1740 @Override 1741 public boolean hasSourceCodeInfo() { 1671 1742 return ((bitField0_ & 0x00000008) == 0x00000008); 1672 1743 } … … 1681 1752 * </pre> 1682 1753 */ 1683 public com.google.protobuf.DescriptorProtos.SourceCodeInfo getSourceCodeInfo() { 1754 @Override 1755 public com.google.protobuf.DescriptorProtos.SourceCodeInfo getSourceCodeInfo() { 1684 1756 return sourceCodeInfo_; 1685 1757 } … … 1694 1766 * </pre> 1695 1767 */ 1696 public com.google.protobuf.DescriptorProtos.SourceCodeInfoOrBuilder getSourceCodeInfoOrBuilder() { 1768 @Override 1769 public com.google.protobuf.DescriptorProtos.SourceCodeInfoOrBuilder getSourceCodeInfoOrBuilder() { 1697 1770 return sourceCodeInfo_; 1698 1771 } … … 1712 1785 } 1713 1786 private byte memoizedIsInitialized = -1; 1714 public final boolean isInitialized() { 1787 @Override 1788 public final boolean isInitialized() { 1715 1789 byte isInitialized = memoizedIsInitialized; 1716 1790 if (isInitialized == 1) return true; … … 1751 1825 } 1752 1826 1753 public void writeTo(com.google.protobuf.CodedOutputStream output) 1827 @Override 1828 public void writeTo(com.google.protobuf.CodedOutputStream output) 1754 1829 throws java.io.IOException { 1755 1830 getSerializedSize(); … … 1791 1866 1792 1867 private int memoizedSerializedSize = -1; 1793 public int getSerializedSize() { 1868 @Override 1869 public int getSerializedSize() { 1794 1870 int size = memoizedSerializedSize; 1795 1871 if (size != -1) return size; … … 1921 1997 1922 1998 public static Builder newBuilder() { return Builder.create(); } 1923 public Builder newBuilderForType() { return newBuilder(); } 1999 @Override 2000 public Builder newBuilderForType() { return newBuilder(); } 1924 2001 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.FileDescriptorProto prototype) { 1925 2002 return newBuilder().mergeFrom(prototype); 1926 2003 } 1927 public Builder toBuilder() { return newBuilder(this); } 2004 @Override 2005 public Builder toBuilder() { return newBuilder(this); } 1928 2006 1929 2007 @java.lang.Override … … 1949 2027 } 1950 2028 1951 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 2029 @Override 2030 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 1952 2031 internalGetFieldAccessorTable() { 1953 2032 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FileDescriptorProto_fieldAccessorTable … … 1980 2059 } 1981 2060 1982 public Builder clear() { 2061 @Override 2062 public Builder clear() { 1983 2063 super.clear(); 1984 2064 name_ = ""; … … 2031 2111 } 2032 2112 2033 public Builder clone() { 2113 @Override 2114 public Builder clone() { 2034 2115 return create().mergeFrom(buildPartial()); 2035 2116 } 2036 2117 2037 public com.google.protobuf.Descriptors.Descriptor 2118 @Override 2119 public com.google.protobuf.Descriptors.Descriptor 2038 2120 getDescriptorForType() { 2039 2121 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FileDescriptorProto_descriptor; 2040 2122 } 2041 2123 2042 public com.google.protobuf.DescriptorProtos.FileDescriptorProto getDefaultInstanceForType() { 2124 @Override 2125 public com.google.protobuf.DescriptorProtos.FileDescriptorProto getDefaultInstanceForType() { 2043 2126 return com.google.protobuf.DescriptorProtos.FileDescriptorProto.getDefaultInstance(); 2044 2127 } 2045 2128 2046 public com.google.protobuf.DescriptorProtos.FileDescriptorProto build() { 2129 @Override 2130 public com.google.protobuf.DescriptorProtos.FileDescriptorProto build() { 2047 2131 com.google.protobuf.DescriptorProtos.FileDescriptorProto result = buildPartial(); 2048 2132 if (!result.isInitialized()) { … … 2052 2136 } 2053 2137 2054 public com.google.protobuf.DescriptorProtos.FileDescriptorProto buildPartial() { 2138 @Override 2139 public com.google.protobuf.DescriptorProtos.FileDescriptorProto buildPartial() { 2055 2140 com.google.protobuf.DescriptorProtos.FileDescriptorProto result = new com.google.protobuf.DescriptorProtos.FileDescriptorProto(this); 2056 2141 int from_bitField0_ = bitField0_; … … 2136 2221 } 2137 2222 2138 public Builder mergeFrom(com.google.protobuf.Message other) { 2223 @Override 2224 public Builder mergeFrom(com.google.protobuf.Message other) { 2139 2225 if (other instanceof com.google.protobuf.DescriptorProtos.FileDescriptorProto) { 2140 2226 return mergeFrom((com.google.protobuf.DescriptorProtos.FileDescriptorProto)other); … … 2205 2291 messageType_ = other.messageType_; 2206 2292 bitField0_ = (bitField0_ & ~0x00000020); 2207 messageTypeBuilder_ = 2293 messageTypeBuilder_ = 2208 2294 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 2209 2295 getMessageTypeFieldBuilder() : null; … … 2231 2317 enumType_ = other.enumType_; 2232 2318 bitField0_ = (bitField0_ & ~0x00000040); 2233 enumTypeBuilder_ = 2319 enumTypeBuilder_ = 2234 2320 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 2235 2321 getEnumTypeFieldBuilder() : null; … … 2257 2343 service_ = other.service_; 2258 2344 bitField0_ = (bitField0_ & ~0x00000080); 2259 serviceBuilder_ = 2345 serviceBuilder_ = 2260 2346 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 2261 2347 getServiceFieldBuilder() : null; … … 2283 2369 extension_ = other.extension_; 2284 2370 bitField0_ = (bitField0_ & ~0x00000100); 2285 extensionBuilder_ = 2371 extensionBuilder_ = 2286 2372 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 2287 2373 getExtensionFieldBuilder() : null; … … 2301 2387 } 2302 2388 2303 public final boolean isInitialized() { 2389 @Override 2390 public final boolean isInitialized() { 2304 2391 for (int i = 0; i < getMessageTypeCount(); i++) { 2305 2392 if (!getMessageType(i).isInitialized()) { 2306 2393 2307 2394 return false; 2308 2395 } … … 2310 2397 for (int i = 0; i < getEnumTypeCount(); i++) { 2311 2398 if (!getEnumType(i).isInitialized()) { 2312 2399 2313 2400 return false; 2314 2401 } … … 2316 2403 for (int i = 0; i < getServiceCount(); i++) { 2317 2404 if (!getService(i).isInitialized()) { 2318 2405 2319 2406 return false; 2320 2407 } … … 2322 2409 for (int i = 0; i < getExtensionCount(); i++) { 2323 2410 if (!getExtension(i).isInitialized()) { 2324 2411 2325 2412 return false; 2326 2413 } … … 2328 2415 if (hasOptions()) { 2329 2416 if (!getOptions().isInitialized()) { 2330 2417 2331 2418 return false; 2332 2419 } … … 2335 2422 } 2336 2423 2337 public Builder mergeFrom( 2424 @Override 2425 public Builder mergeFrom( 2338 2426 com.google.protobuf.CodedInputStream input, 2339 2427 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 2362 2450 * </pre> 2363 2451 */ 2364 public boolean hasName() { 2452 @Override 2453 public boolean hasName() { 2365 2454 return ((bitField0_ & 0x00000001) == 0x00000001); 2366 2455 } … … 2372 2461 * </pre> 2373 2462 */ 2374 public java.lang.String getName() { 2463 @Override 2464 public java.lang.String getName() { 2375 2465 java.lang.Object ref = name_; 2376 2466 if (!(ref instanceof java.lang.String)) { … … 2393 2483 * </pre> 2394 2484 */ 2395 public com.google.protobuf.ByteString 2485 @Override 2486 public com.google.protobuf.ByteString 2396 2487 getNameBytes() { 2397 2488 java.lang.Object ref = name_; 2398 2489 if (ref instanceof String) { 2399 com.google.protobuf.ByteString b = 2490 com.google.protobuf.ByteString b = 2400 2491 com.google.protobuf.ByteString.copyFromUtf8( 2401 2492 (java.lang.String) ref); … … 2462 2553 * </pre> 2463 2554 */ 2464 public boolean hasPackage() { 2555 @Override 2556 public boolean hasPackage() { 2465 2557 return ((bitField0_ & 0x00000002) == 0x00000002); 2466 2558 } … … 2472 2564 * </pre> 2473 2565 */ 2474 public java.lang.String getPackage() { 2566 @Override 2567 public java.lang.String getPackage() { 2475 2568 java.lang.Object ref = package_; 2476 2569 if (!(ref instanceof java.lang.String)) { … … 2493 2586 * </pre> 2494 2587 */ 2495 public com.google.protobuf.ByteString 2588 @Override 2589 public com.google.protobuf.ByteString 2496 2590 getPackageBytes() { 2497 2591 java.lang.Object ref = package_; 2498 2592 if (ref instanceof String) { 2499 com.google.protobuf.ByteString b = 2593 com.google.protobuf.ByteString b = 2500 2594 com.google.protobuf.ByteString.copyFromUtf8( 2501 2595 (java.lang.String) ref); … … 2568 2662 * </pre> 2569 2663 */ 2570 public com.google.protobuf.ProtocolStringList 2664 @Override 2665 public com.google.protobuf.ProtocolStringList 2571 2666 getDependencyList() { 2572 2667 return dependency_.getUnmodifiableView(); … … 2579 2674 * </pre> 2580 2675 */ 2581 public int getDependencyCount() { 2676 @Override 2677 public int getDependencyCount() { 2582 2678 return dependency_.size(); 2583 2679 } … … 2589 2685 * </pre> 2590 2686 */ 2591 public java.lang.String getDependency(int index) { 2687 @Override 2688 public java.lang.String getDependency(int index) { 2592 2689 return dependency_.get(index); 2593 2690 } … … 2599 2696 * </pre> 2600 2697 */ 2601 public com.google.protobuf.ByteString 2698 @Override 2699 public com.google.protobuf.ByteString 2602 2700 getDependencyBytes(int index) { 2603 2701 return dependency_.getByteString(index); … … 2697 2795 * </pre> 2698 2796 */ 2699 public java.util.List<java.lang.Integer> 2797 @Override 2798 public java.util.List<java.lang.Integer> 2700 2799 getPublicDependencyList() { 2701 2800 return java.util.Collections.unmodifiableList(publicDependency_); … … 2708 2807 * </pre> 2709 2808 */ 2710 public int getPublicDependencyCount() { 2809 @Override 2810 public int getPublicDependencyCount() { 2711 2811 return publicDependency_.size(); 2712 2812 } … … 2718 2818 * </pre> 2719 2819 */ 2720 public int getPublicDependency(int index) { 2820 @Override 2821 public int getPublicDependency(int index) { 2721 2822 return publicDependency_.get(index); 2722 2823 } … … 2792 2893 * </pre> 2793 2894 */ 2794 public java.util.List<java.lang.Integer> 2895 @Override 2896 public java.util.List<java.lang.Integer> 2795 2897 getWeakDependencyList() { 2796 2898 return java.util.Collections.unmodifiableList(weakDependency_); … … 2804 2906 * </pre> 2805 2907 */ 2806 public int getWeakDependencyCount() { 2908 @Override 2909 public int getWeakDependencyCount() { 2807 2910 return weakDependency_.size(); 2808 2911 } … … 2815 2918 * </pre> 2816 2919 */ 2817 public int getWeakDependency(int index) { 2920 @Override 2921 public int getWeakDependency(int index) { 2818 2922 return weakDependency_.get(index); 2819 2923 } … … 2897 3001 * </pre> 2898 3002 */ 2899 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> getMessageTypeList() { 3003 @Override 3004 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> getMessageTypeList() { 2900 3005 if (messageTypeBuilder_ == null) { 2901 3006 return java.util.Collections.unmodifiableList(messageType_); … … 2911 3016 * </pre> 2912 3017 */ 2913 public int getMessageTypeCount() { 3018 @Override 3019 public int getMessageTypeCount() { 2914 3020 if (messageTypeBuilder_ == null) { 2915 3021 return messageType_.size(); … … 2925 3031 * </pre> 2926 3032 */ 2927 public com.google.protobuf.DescriptorProtos.DescriptorProto getMessageType(int index) { 3033 @Override 3034 public com.google.protobuf.DescriptorProtos.DescriptorProto getMessageType(int index) { 2928 3035 if (messageTypeBuilder_ == null) { 2929 3036 return messageType_.get(index); … … 3119 3226 * </pre> 3120 3227 */ 3121 public com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder getMessageTypeOrBuilder( 3228 @Override 3229 public com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder getMessageTypeOrBuilder( 3122 3230 int index) { 3123 3231 if (messageTypeBuilder_ == null) { … … 3133 3241 * </pre> 3134 3242 */ 3135 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 3243 @Override 3244 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 3136 3245 getMessageTypeOrBuilderList() { 3137 3246 if (messageTypeBuilder_ != null) { … … 3171 3280 * </pre> 3172 3281 */ 3173 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.Builder> 3282 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.Builder> 3174 3283 getMessageTypeBuilderList() { 3175 3284 return getMessageTypeFieldBuilder().getBuilderList(); 3176 3285 } 3177 3286 private com.google.protobuf.RepeatedFieldBuilder< 3178 com.google.protobuf.DescriptorProtos.DescriptorProto, com.google.protobuf.DescriptorProtos.DescriptorProto.Builder, com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 3287 com.google.protobuf.DescriptorProtos.DescriptorProto, com.google.protobuf.DescriptorProtos.DescriptorProto.Builder, com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 3179 3288 getMessageTypeFieldBuilder() { 3180 3289 if (messageTypeBuilder_ == null) { … … 3204 3313 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 3205 3314 */ 3206 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> getEnumTypeList() { 3315 @Override 3316 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> getEnumTypeList() { 3207 3317 if (enumTypeBuilder_ == null) { 3208 3318 return java.util.Collections.unmodifiableList(enumType_); … … 3214 3324 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 3215 3325 */ 3216 public int getEnumTypeCount() { 3326 @Override 3327 public int getEnumTypeCount() { 3217 3328 if (enumTypeBuilder_ == null) { 3218 3329 return enumType_.size(); … … 3224 3335 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 3225 3336 */ 3226 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto getEnumType(int index) { 3337 @Override 3338 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto getEnumType(int index) { 3227 3339 if (enumTypeBuilder_ == null) { 3228 3340 return enumType_.get(index); … … 3374 3486 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 3375 3487 */ 3376 public com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder getEnumTypeOrBuilder( 3488 @Override 3489 public com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder getEnumTypeOrBuilder( 3377 3490 int index) { 3378 3491 if (enumTypeBuilder_ == null) { … … 3384 3497 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 3385 3498 */ 3386 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 3499 @Override 3500 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 3387 3501 getEnumTypeOrBuilderList() { 3388 3502 if (enumTypeBuilder_ != null) { … … 3410 3524 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 5;</code> 3411 3525 */ 3412 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto.Builder> 3526 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto.Builder> 3413 3527 getEnumTypeBuilderList() { 3414 3528 return getEnumTypeFieldBuilder().getBuilderList(); 3415 3529 } 3416 3530 private com.google.protobuf.RepeatedFieldBuilder< 3417 com.google.protobuf.DescriptorProtos.EnumDescriptorProto, com.google.protobuf.DescriptorProtos.EnumDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 3531 com.google.protobuf.DescriptorProtos.EnumDescriptorProto, com.google.protobuf.DescriptorProtos.EnumDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 3418 3532 getEnumTypeFieldBuilder() { 3419 3533 if (enumTypeBuilder_ == null) { … … 3443 3557 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 3444 3558 */ 3445 public java.util.List<com.google.protobuf.DescriptorProtos.ServiceDescriptorProto> getServiceList() { 3559 @Override 3560 public java.util.List<com.google.protobuf.DescriptorProtos.ServiceDescriptorProto> getServiceList() { 3446 3561 if (serviceBuilder_ == null) { 3447 3562 return java.util.Collections.unmodifiableList(service_); … … 3453 3568 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 3454 3569 */ 3455 public int getServiceCount() { 3570 @Override 3571 public int getServiceCount() { 3456 3572 if (serviceBuilder_ == null) { 3457 3573 return service_.size(); … … 3463 3579 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 3464 3580 */ 3465 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProto getService(int index) { 3581 @Override 3582 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProto getService(int index) { 3466 3583 if (serviceBuilder_ == null) { 3467 3584 return service_.get(index); … … 3613 3730 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 3614 3731 */ 3615 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder getServiceOrBuilder( 3732 @Override 3733 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder getServiceOrBuilder( 3616 3734 int index) { 3617 3735 if (serviceBuilder_ == null) { … … 3623 3741 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 3624 3742 */ 3625 public java.util.List<? extends com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder> 3743 @Override 3744 public java.util.List<? extends com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder> 3626 3745 getServiceOrBuilderList() { 3627 3746 if (serviceBuilder_ != null) { … … 3649 3768 * <code>repeated .google.protobuf.ServiceDescriptorProto service = 6;</code> 3650 3769 */ 3651 public java.util.List<com.google.protobuf.DescriptorProtos.ServiceDescriptorProto.Builder> 3770 public java.util.List<com.google.protobuf.DescriptorProtos.ServiceDescriptorProto.Builder> 3652 3771 getServiceBuilderList() { 3653 3772 return getServiceFieldBuilder().getBuilderList(); 3654 3773 } 3655 3774 private com.google.protobuf.RepeatedFieldBuilder< 3656 com.google.protobuf.DescriptorProtos.ServiceDescriptorProto, com.google.protobuf.DescriptorProtos.ServiceDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder> 3775 com.google.protobuf.DescriptorProtos.ServiceDescriptorProto, com.google.protobuf.DescriptorProtos.ServiceDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.ServiceDescriptorProtoOrBuilder> 3657 3776 getServiceFieldBuilder() { 3658 3777 if (serviceBuilder_ == null) { … … 3682 3801 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 3683 3802 */ 3684 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getExtensionList() { 3803 @Override 3804 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getExtensionList() { 3685 3805 if (extensionBuilder_ == null) { 3686 3806 return java.util.Collections.unmodifiableList(extension_); … … 3692 3812 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 3693 3813 */ 3694 public int getExtensionCount() { 3814 @Override 3815 public int getExtensionCount() { 3695 3816 if (extensionBuilder_ == null) { 3696 3817 return extension_.size(); … … 3702 3823 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 3703 3824 */ 3704 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getExtension(int index) { 3825 @Override 3826 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getExtension(int index) { 3705 3827 if (extensionBuilder_ == null) { 3706 3828 return extension_.get(index); … … 3852 3974 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 3853 3975 */ 3854 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getExtensionOrBuilder( 3976 @Override 3977 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getExtensionOrBuilder( 3855 3978 int index) { 3856 3979 if (extensionBuilder_ == null) { … … 3862 3985 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 3863 3986 */ 3864 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 3987 @Override 3988 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 3865 3989 getExtensionOrBuilderList() { 3866 3990 if (extensionBuilder_ != null) { … … 3888 4012 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 7;</code> 3889 4013 */ 3890 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder> 4014 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder> 3891 4015 getExtensionBuilderList() { 3892 4016 return getExtensionFieldBuilder().getBuilderList(); 3893 4017 } 3894 4018 private com.google.protobuf.RepeatedFieldBuilder< 3895 com.google.protobuf.DescriptorProtos.FieldDescriptorProto, com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 4019 com.google.protobuf.DescriptorProtos.FieldDescriptorProto, com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 3896 4020 getExtensionFieldBuilder() { 3897 4021 if (extensionBuilder_ == null) { … … 3912 4036 * <code>optional .google.protobuf.FileOptions options = 8;</code> 3913 4037 */ 3914 public boolean hasOptions() { 4038 @Override 4039 public boolean hasOptions() { 3915 4040 return ((bitField0_ & 0x00000200) == 0x00000200); 3916 4041 } … … 3918 4043 * <code>optional .google.protobuf.FileOptions options = 8;</code> 3919 4044 */ 3920 public com.google.protobuf.DescriptorProtos.FileOptions getOptions() { 4045 @Override 4046 public com.google.protobuf.DescriptorProtos.FileOptions getOptions() { 3921 4047 if (optionsBuilder_ == null) { 3922 4048 return options_; … … 3998 4124 * <code>optional .google.protobuf.FileOptions options = 8;</code> 3999 4125 */ 4000 public com.google.protobuf.DescriptorProtos.FileOptionsOrBuilder getOptionsOrBuilder() { 4126 @Override 4127 public com.google.protobuf.DescriptorProtos.FileOptionsOrBuilder getOptionsOrBuilder() { 4001 4128 if (optionsBuilder_ != null) { 4002 4129 return optionsBuilder_.getMessageOrBuilder(); … … 4009 4136 */ 4010 4137 private com.google.protobuf.SingleFieldBuilder< 4011 com.google.protobuf.DescriptorProtos.FileOptions, com.google.protobuf.DescriptorProtos.FileOptions.Builder, com.google.protobuf.DescriptorProtos.FileOptionsOrBuilder> 4138 com.google.protobuf.DescriptorProtos.FileOptions, com.google.protobuf.DescriptorProtos.FileOptions.Builder, com.google.protobuf.DescriptorProtos.FileOptionsOrBuilder> 4012 4139 getOptionsFieldBuilder() { 4013 4140 if (optionsBuilder_ == null) { … … 4034 4161 * </pre> 4035 4162 */ 4036 public boolean hasSourceCodeInfo() { 4163 @Override 4164 public boolean hasSourceCodeInfo() { 4037 4165 return ((bitField0_ & 0x00000400) == 0x00000400); 4038 4166 } … … 4047 4175 * </pre> 4048 4176 */ 4049 public com.google.protobuf.DescriptorProtos.SourceCodeInfo getSourceCodeInfo() { 4177 @Override 4178 public com.google.protobuf.DescriptorProtos.SourceCodeInfo getSourceCodeInfo() { 4050 4179 if (sourceCodeInfoBuilder_ == null) { 4051 4180 return sourceCodeInfo_; … … 4169 4298 * </pre> 4170 4299 */ 4171 public com.google.protobuf.DescriptorProtos.SourceCodeInfoOrBuilder getSourceCodeInfoOrBuilder() { 4300 @Override 4301 public com.google.protobuf.DescriptorProtos.SourceCodeInfoOrBuilder getSourceCodeInfoOrBuilder() { 4172 4302 if (sourceCodeInfoBuilder_ != null) { 4173 4303 return sourceCodeInfoBuilder_.getMessageOrBuilder(); … … 4187 4317 */ 4188 4318 private com.google.protobuf.SingleFieldBuilder< 4189 com.google.protobuf.DescriptorProtos.SourceCodeInfo, com.google.protobuf.DescriptorProtos.SourceCodeInfo.Builder, com.google.protobuf.DescriptorProtos.SourceCodeInfoOrBuilder> 4319 com.google.protobuf.DescriptorProtos.SourceCodeInfo, com.google.protobuf.DescriptorProtos.SourceCodeInfo.Builder, com.google.protobuf.DescriptorProtos.SourceCodeInfoOrBuilder> 4190 4320 getSourceCodeInfoFieldBuilder() { 4191 4321 if (sourceCodeInfoBuilder_ == null) { … … 4231 4361 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 4232 4362 */ 4233 java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> 4363 java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> 4234 4364 getFieldList(); 4235 4365 /** … … 4244 4374 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 4245 4375 */ 4246 java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 4376 java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 4247 4377 getFieldOrBuilderList(); 4248 4378 /** … … 4255 4385 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 4256 4386 */ 4257 java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> 4387 java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> 4258 4388 getExtensionList(); 4259 4389 /** … … 4268 4398 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 4269 4399 */ 4270 java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 4400 java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 4271 4401 getExtensionOrBuilderList(); 4272 4402 /** … … 4279 4409 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 4280 4410 */ 4281 java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> 4411 java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> 4282 4412 getNestedTypeList(); 4283 4413 /** … … 4292 4422 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 4293 4423 */ 4294 java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 4424 java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 4295 4425 getNestedTypeOrBuilderList(); 4296 4426 /** … … 4303 4433 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 4304 4434 */ 4305 java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> 4435 java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> 4306 4436 getEnumTypeList(); 4307 4437 /** … … 4316 4446 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 4317 4447 */ 4318 java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 4448 java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 4319 4449 getEnumTypeOrBuilderList(); 4320 4450 /** … … 4327 4457 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 4328 4458 */ 4329 java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange> 4459 java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange> 4330 4460 getExtensionRangeList(); 4331 4461 /** … … 4340 4470 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 4341 4471 */ 4342 java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder> 4472 java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder> 4343 4473 getExtensionRangeOrBuilderList(); 4344 4474 /** … … 4351 4481 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 4352 4482 */ 4353 java.util.List<com.google.protobuf.DescriptorProtos.OneofDescriptorProto> 4483 java.util.List<com.google.protobuf.DescriptorProtos.OneofDescriptorProto> 4354 4484 getOneofDeclList(); 4355 4485 /** … … 4364 4494 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 4365 4495 */ 4366 java.util.List<? extends com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder> 4496 java.util.List<? extends com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder> 4367 4497 getOneofDeclOrBuilderList(); 4368 4498 /** … … 4408 4538 } 4409 4539 4410 public DescriptorProto getDefaultInstanceForType() { 4540 @Override 4541 public DescriptorProto getDefaultInstanceForType() { 4411 4542 return defaultInstance; 4412 4543 } … … 4543 4674 } 4544 4675 4545 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 4676 @Override 4677 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 4546 4678 internalGetFieldAccessorTable() { 4547 4679 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_DescriptorProto_fieldAccessorTable … … 4552 4684 public static com.google.protobuf.Parser<DescriptorProto> PARSER = 4553 4685 new com.google.protobuf.AbstractParser<DescriptorProto>() { 4554 public DescriptorProto parsePartialFrom( 4686 @Override 4687 public DescriptorProto parsePartialFrom( 4555 4688 com.google.protobuf.CodedInputStream input, 4556 4689 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 4606 4739 } 4607 4740 4608 public ExtensionRange getDefaultInstanceForType() { 4741 @Override 4742 public ExtensionRange getDefaultInstanceForType() { 4609 4743 return defaultInstance; 4610 4744 } … … 4666 4800 } 4667 4801 4668 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 4802 @Override 4803 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 4669 4804 internalGetFieldAccessorTable() { 4670 4805 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_DescriptorProto_ExtensionRange_fieldAccessorTable … … 4675 4810 public static com.google.protobuf.Parser<ExtensionRange> PARSER = 4676 4811 new com.google.protobuf.AbstractParser<ExtensionRange>() { 4677 public ExtensionRange parsePartialFrom( 4812 @Override 4813 public ExtensionRange parsePartialFrom( 4678 4814 com.google.protobuf.CodedInputStream input, 4679 4815 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 4694 4830 * <code>optional int32 start = 1;</code> 4695 4831 */ 4696 public boolean hasStart() { 4832 @Override 4833 public boolean hasStart() { 4697 4834 return ((bitField0_ & 0x00000001) == 0x00000001); 4698 4835 } … … 4700 4837 * <code>optional int32 start = 1;</code> 4701 4838 */ 4702 public int getStart() { 4839 @Override 4840 public int getStart() { 4703 4841 return start_; 4704 4842 } … … 4709 4847 * <code>optional int32 end = 2;</code> 4710 4848 */ 4711 public boolean hasEnd() { 4849 @Override 4850 public boolean hasEnd() { 4712 4851 return ((bitField0_ & 0x00000002) == 0x00000002); 4713 4852 } … … 4715 4854 * <code>optional int32 end = 2;</code> 4716 4855 */ 4717 public int getEnd() { 4856 @Override 4857 public int getEnd() { 4718 4858 return end_; 4719 4859 } … … 4724 4864 } 4725 4865 private byte memoizedIsInitialized = -1; 4726 public final boolean isInitialized() { 4866 @Override 4867 public final boolean isInitialized() { 4727 4868 byte isInitialized = memoizedIsInitialized; 4728 4869 if (isInitialized == 1) return true; … … 4733 4874 } 4734 4875 4735 public void writeTo(com.google.protobuf.CodedOutputStream output) 4876 @Override 4877 public void writeTo(com.google.protobuf.CodedOutputStream output) 4736 4878 throws java.io.IOException { 4737 4879 getSerializedSize(); … … 4746 4888 4747 4889 private int memoizedSerializedSize = -1; 4748 public int getSerializedSize() { 4890 @Override 4891 public int getSerializedSize() { 4749 4892 int size = memoizedSerializedSize; 4750 4893 if (size != -1) return size; … … 4825 4968 4826 4969 public static Builder newBuilder() { return Builder.create(); } 4827 public Builder newBuilderForType() { return newBuilder(); } 4970 @Override 4971 public Builder newBuilderForType() { return newBuilder(); } 4828 4972 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange prototype) { 4829 4973 return newBuilder().mergeFrom(prototype); 4830 4974 } 4831 public Builder toBuilder() { return newBuilder(this); } 4975 @Override 4976 public Builder toBuilder() { return newBuilder(this); } 4832 4977 4833 4978 @java.lang.Override … … 4849 4994 } 4850 4995 4851 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 4996 @Override 4997 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 4852 4998 internalGetFieldAccessorTable() { 4853 4999 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_DescriptorProto_ExtensionRange_fieldAccessorTable … … 4874 5020 } 4875 5021 4876 public Builder clear() { 5022 @Override 5023 public Builder clear() { 4877 5024 super.clear(); 4878 5025 start_ = 0; … … 4883 5030 } 4884 5031 4885 public Builder clone() { 5032 @Override 5033 public Builder clone() { 4886 5034 return create().mergeFrom(buildPartial()); 4887 5035 } 4888 5036 4889 public com.google.protobuf.Descriptors.Descriptor 5037 @Override 5038 public com.google.protobuf.Descriptors.Descriptor 4890 5039 getDescriptorForType() { 4891 5040 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_DescriptorProto_ExtensionRange_descriptor; 4892 5041 } 4893 5042 4894 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange getDefaultInstanceForType() { 5043 @Override 5044 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange getDefaultInstanceForType() { 4895 5045 return com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange.getDefaultInstance(); 4896 5046 } 4897 5047 4898 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange build() { 5048 @Override 5049 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange build() { 4899 5050 com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange result = buildPartial(); 4900 5051 if (!result.isInitialized()) { … … 4904 5055 } 4905 5056 4906 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange buildPartial() { 5057 @Override 5058 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange buildPartial() { 4907 5059 com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange result = new com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange(this); 4908 5060 int from_bitField0_ = bitField0_; … … 4921 5073 } 4922 5074 4923 public Builder mergeFrom(com.google.protobuf.Message other) { 5075 @Override 5076 public Builder mergeFrom(com.google.protobuf.Message other) { 4924 5077 if (other instanceof com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange) { 4925 5078 return mergeFrom((com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange)other); … … 4942 5095 } 4943 5096 4944 public final boolean isInitialized() { 5097 @Override 5098 public final boolean isInitialized() { 4945 5099 return true; 4946 5100 } 4947 5101 4948 public Builder mergeFrom( 5102 @Override 5103 public Builder mergeFrom( 4949 5104 com.google.protobuf.CodedInputStream input, 4950 5105 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 4969 5124 * <code>optional int32 start = 1;</code> 4970 5125 */ 4971 public boolean hasStart() { 5126 @Override 5127 public boolean hasStart() { 4972 5128 return ((bitField0_ & 0x00000001) == 0x00000001); 4973 5129 } … … 4975 5131 * <code>optional int32 start = 1;</code> 4976 5132 */ 4977 public int getStart() { 5133 @Override 5134 public int getStart() { 4978 5135 return start_; 4979 5136 } … … 5001 5158 * <code>optional int32 end = 2;</code> 5002 5159 */ 5003 public boolean hasEnd() { 5160 @Override 5161 public boolean hasEnd() { 5004 5162 return ((bitField0_ & 0x00000002) == 0x00000002); 5005 5163 } … … 5007 5165 * <code>optional int32 end = 2;</code> 5008 5166 */ 5009 public int getEnd() { 5167 @Override 5168 public int getEnd() { 5010 5169 return end_; 5011 5170 } … … 5046 5205 * <code>optional string name = 1;</code> 5047 5206 */ 5048 public boolean hasName() { 5207 @Override 5208 public boolean hasName() { 5049 5209 return ((bitField0_ & 0x00000001) == 0x00000001); 5050 5210 } … … 5052 5212 * <code>optional string name = 1;</code> 5053 5213 */ 5054 public java.lang.String getName() { 5214 @Override 5215 public java.lang.String getName() { 5055 5216 java.lang.Object ref = name_; 5056 5217 if (ref instanceof java.lang.String) { 5057 5218 return (java.lang.String) ref; 5058 5219 } else { 5059 com.google.protobuf.ByteString bs = 5220 com.google.protobuf.ByteString bs = 5060 5221 (com.google.protobuf.ByteString) ref; 5061 5222 java.lang.String s = bs.toStringUtf8(); … … 5069 5230 * <code>optional string name = 1;</code> 5070 5231 */ 5071 public com.google.protobuf.ByteString 5232 @Override 5233 public com.google.protobuf.ByteString 5072 5234 getNameBytes() { 5073 5235 java.lang.Object ref = name_; 5074 5236 if (ref instanceof java.lang.String) { 5075 com.google.protobuf.ByteString b = 5237 com.google.protobuf.ByteString b = 5076 5238 com.google.protobuf.ByteString.copyFromUtf8( 5077 5239 (java.lang.String) ref); … … 5088 5250 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 5089 5251 */ 5090 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getFieldList() { 5252 @Override 5253 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getFieldList() { 5091 5254 return field_; 5092 5255 } … … 5094 5257 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 5095 5258 */ 5096 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 5259 @Override 5260 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 5097 5261 getFieldOrBuilderList() { 5098 5262 return field_; … … 5101 5265 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 5102 5266 */ 5103 public int getFieldCount() { 5267 @Override 5268 public int getFieldCount() { 5104 5269 return field_.size(); 5105 5270 } … … 5107 5272 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 5108 5273 */ 5109 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getField(int index) { 5274 @Override 5275 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getField(int index) { 5110 5276 return field_.get(index); 5111 5277 } … … 5113 5279 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 5114 5280 */ 5115 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getFieldOrBuilder( 5281 @Override 5282 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getFieldOrBuilder( 5116 5283 int index) { 5117 5284 return field_.get(index); … … 5123 5290 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 5124 5291 */ 5125 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getExtensionList() { 5292 @Override 5293 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getExtensionList() { 5126 5294 return extension_; 5127 5295 } … … 5129 5297 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 5130 5298 */ 5131 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 5299 @Override 5300 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 5132 5301 getExtensionOrBuilderList() { 5133 5302 return extension_; … … 5136 5305 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 5137 5306 */ 5138 public int getExtensionCount() { 5307 @Override 5308 public int getExtensionCount() { 5139 5309 return extension_.size(); 5140 5310 } … … 5142 5312 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 5143 5313 */ 5144 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getExtension(int index) { 5314 @Override 5315 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getExtension(int index) { 5145 5316 return extension_.get(index); 5146 5317 } … … 5148 5319 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 5149 5320 */ 5150 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getExtensionOrBuilder( 5321 @Override 5322 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getExtensionOrBuilder( 5151 5323 int index) { 5152 5324 return extension_.get(index); … … 5158 5330 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 5159 5331 */ 5160 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> getNestedTypeList() { 5332 @Override 5333 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> getNestedTypeList() { 5161 5334 return nestedType_; 5162 5335 } … … 5164 5337 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 5165 5338 */ 5166 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 5339 @Override 5340 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 5167 5341 getNestedTypeOrBuilderList() { 5168 5342 return nestedType_; … … 5171 5345 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 5172 5346 */ 5173 public int getNestedTypeCount() { 5347 @Override 5348 public int getNestedTypeCount() { 5174 5349 return nestedType_.size(); 5175 5350 } … … 5177 5352 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 5178 5353 */ 5179 public com.google.protobuf.DescriptorProtos.DescriptorProto getNestedType(int index) { 5354 @Override 5355 public com.google.protobuf.DescriptorProtos.DescriptorProto getNestedType(int index) { 5180 5356 return nestedType_.get(index); 5181 5357 } … … 5183 5359 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 5184 5360 */ 5185 public com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder getNestedTypeOrBuilder( 5361 @Override 5362 public com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder getNestedTypeOrBuilder( 5186 5363 int index) { 5187 5364 return nestedType_.get(index); … … 5193 5370 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 5194 5371 */ 5195 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> getEnumTypeList() { 5372 @Override 5373 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> getEnumTypeList() { 5196 5374 return enumType_; 5197 5375 } … … 5199 5377 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 5200 5378 */ 5201 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 5379 @Override 5380 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 5202 5381 getEnumTypeOrBuilderList() { 5203 5382 return enumType_; … … 5206 5385 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 5207 5386 */ 5208 public int getEnumTypeCount() { 5387 @Override 5388 public int getEnumTypeCount() { 5209 5389 return enumType_.size(); 5210 5390 } … … 5212 5392 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 5213 5393 */ 5214 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto getEnumType(int index) { 5394 @Override 5395 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto getEnumType(int index) { 5215 5396 return enumType_.get(index); 5216 5397 } … … 5218 5399 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 5219 5400 */ 5220 public com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder getEnumTypeOrBuilder( 5401 @Override 5402 public com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder getEnumTypeOrBuilder( 5221 5403 int index) { 5222 5404 return enumType_.get(index); … … 5228 5410 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 5229 5411 */ 5230 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange> getExtensionRangeList() { 5412 @Override 5413 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange> getExtensionRangeList() { 5231 5414 return extensionRange_; 5232 5415 } … … 5234 5417 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 5235 5418 */ 5236 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder> 5419 @Override 5420 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder> 5237 5421 getExtensionRangeOrBuilderList() { 5238 5422 return extensionRange_; … … 5241 5425 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 5242 5426 */ 5243 public int getExtensionRangeCount() { 5427 @Override 5428 public int getExtensionRangeCount() { 5244 5429 return extensionRange_.size(); 5245 5430 } … … 5247 5432 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 5248 5433 */ 5249 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange getExtensionRange(int index) { 5434 @Override 5435 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange getExtensionRange(int index) { 5250 5436 return extensionRange_.get(index); 5251 5437 } … … 5253 5439 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 5254 5440 */ 5255 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder getExtensionRangeOrBuilder( 5441 @Override 5442 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder getExtensionRangeOrBuilder( 5256 5443 int index) { 5257 5444 return extensionRange_.get(index); … … 5263 5450 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 5264 5451 */ 5265 public java.util.List<com.google.protobuf.DescriptorProtos.OneofDescriptorProto> getOneofDeclList() { 5452 @Override 5453 public java.util.List<com.google.protobuf.DescriptorProtos.OneofDescriptorProto> getOneofDeclList() { 5266 5454 return oneofDecl_; 5267 5455 } … … 5269 5457 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 5270 5458 */ 5271 public java.util.List<? extends com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder> 5459 @Override 5460 public java.util.List<? extends com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder> 5272 5461 getOneofDeclOrBuilderList() { 5273 5462 return oneofDecl_; … … 5276 5465 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 5277 5466 */ 5278 public int getOneofDeclCount() { 5467 @Override 5468 public int getOneofDeclCount() { 5279 5469 return oneofDecl_.size(); 5280 5470 } … … 5282 5472 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 5283 5473 */ 5284 public com.google.protobuf.DescriptorProtos.OneofDescriptorProto getOneofDecl(int index) { 5474 @Override 5475 public com.google.protobuf.DescriptorProtos.OneofDescriptorProto getOneofDecl(int index) { 5285 5476 return oneofDecl_.get(index); 5286 5477 } … … 5288 5479 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 5289 5480 */ 5290 public com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder getOneofDeclOrBuilder( 5481 @Override 5482 public com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder getOneofDeclOrBuilder( 5291 5483 int index) { 5292 5484 return oneofDecl_.get(index); … … 5298 5490 * <code>optional .google.protobuf.MessageOptions options = 7;</code> 5299 5491 */ 5300 public boolean hasOptions() { 5492 @Override 5493 public boolean hasOptions() { 5301 5494 return ((bitField0_ & 0x00000002) == 0x00000002); 5302 5495 } … … 5304 5497 * <code>optional .google.protobuf.MessageOptions options = 7;</code> 5305 5498 */ 5306 public com.google.protobuf.DescriptorProtos.MessageOptions getOptions() { 5499 @Override 5500 public com.google.protobuf.DescriptorProtos.MessageOptions getOptions() { 5307 5501 return options_; 5308 5502 } … … 5310 5504 * <code>optional .google.protobuf.MessageOptions options = 7;</code> 5311 5505 */ 5312 public com.google.protobuf.DescriptorProtos.MessageOptionsOrBuilder getOptionsOrBuilder() { 5506 @Override 5507 public com.google.protobuf.DescriptorProtos.MessageOptionsOrBuilder getOptionsOrBuilder() { 5313 5508 return options_; 5314 5509 } … … 5325 5520 } 5326 5521 private byte memoizedIsInitialized = -1; 5327 public final boolean isInitialized() { 5522 @Override 5523 public final boolean isInitialized() { 5328 5524 byte isInitialized = memoizedIsInitialized; 5329 5525 if (isInitialized == 1) return true; … … 5364 5560 } 5365 5561 5366 public void writeTo(com.google.protobuf.CodedOutputStream output) 5562 @Override 5563 public void writeTo(com.google.protobuf.CodedOutputStream output) 5367 5564 throws java.io.IOException { 5368 5565 getSerializedSize(); … … 5395 5592 5396 5593 private int memoizedSerializedSize = -1; 5397 public int getSerializedSize() { 5594 @Override 5595 public int getSerializedSize() { 5398 5596 int size = memoizedSerializedSize; 5399 5597 if (size != -1) return size; … … 5498 5696 5499 5697 public static Builder newBuilder() { return Builder.create(); } 5500 public Builder newBuilderForType() { return newBuilder(); } 5698 @Override 5699 public Builder newBuilderForType() { return newBuilder(); } 5501 5700 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.DescriptorProto prototype) { 5502 5701 return newBuilder().mergeFrom(prototype); 5503 5702 } 5504 public Builder toBuilder() { return newBuilder(this); } 5703 @Override 5704 public Builder toBuilder() { return newBuilder(this); } 5505 5705 5506 5706 @java.lang.Override … … 5526 5726 } 5527 5727 5528 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 5728 @Override 5729 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 5529 5730 internalGetFieldAccessorTable() { 5530 5731 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_DescriptorProto_fieldAccessorTable … … 5558 5759 } 5559 5760 5560 public Builder clear() { 5761 @Override 5762 public Builder clear() { 5561 5763 super.clear(); 5562 5764 name_ = ""; … … 5607 5809 } 5608 5810 5609 public Builder clone() { 5811 @Override 5812 public Builder clone() { 5610 5813 return create().mergeFrom(buildPartial()); 5611 5814 } 5612 5815 5613 public com.google.protobuf.Descriptors.Descriptor 5816 @Override 5817 public com.google.protobuf.Descriptors.Descriptor 5614 5818 getDescriptorForType() { 5615 5819 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_DescriptorProto_descriptor; 5616 5820 } 5617 5821 5618 public com.google.protobuf.DescriptorProtos.DescriptorProto getDefaultInstanceForType() { 5822 @Override 5823 public com.google.protobuf.DescriptorProtos.DescriptorProto getDefaultInstanceForType() { 5619 5824 return com.google.protobuf.DescriptorProtos.DescriptorProto.getDefaultInstance(); 5620 5825 } 5621 5826 5622 public com.google.protobuf.DescriptorProtos.DescriptorProto build() { 5827 @Override 5828 public com.google.protobuf.DescriptorProtos.DescriptorProto build() { 5623 5829 com.google.protobuf.DescriptorProtos.DescriptorProto result = buildPartial(); 5624 5830 if (!result.isInitialized()) { … … 5628 5834 } 5629 5835 5630 public com.google.protobuf.DescriptorProtos.DescriptorProto buildPartial() { 5836 @Override 5837 public com.google.protobuf.DescriptorProtos.DescriptorProto buildPartial() { 5631 5838 com.google.protobuf.DescriptorProtos.DescriptorProto result = new com.google.protobuf.DescriptorProtos.DescriptorProto(this); 5632 5839 int from_bitField0_ = bitField0_; … … 5703 5910 } 5704 5911 5705 public Builder mergeFrom(com.google.protobuf.Message other) { 5912 @Override 5913 public Builder mergeFrom(com.google.protobuf.Message other) { 5706 5914 if (other instanceof com.google.protobuf.DescriptorProtos.DescriptorProto) { 5707 5915 return mergeFrom((com.google.protobuf.DescriptorProtos.DescriptorProto)other); … … 5737 5945 field_ = other.field_; 5738 5946 bitField0_ = (bitField0_ & ~0x00000002); 5739 fieldBuilder_ = 5947 fieldBuilder_ = 5740 5948 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 5741 5949 getFieldFieldBuilder() : null; … … 5763 5971 extension_ = other.extension_; 5764 5972 bitField0_ = (bitField0_ & ~0x00000004); 5765 extensionBuilder_ = 5973 extensionBuilder_ = 5766 5974 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 5767 5975 getExtensionFieldBuilder() : null; … … 5789 5997 nestedType_ = other.nestedType_; 5790 5998 bitField0_ = (bitField0_ & ~0x00000008); 5791 nestedTypeBuilder_ = 5999 nestedTypeBuilder_ = 5792 6000 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 5793 6001 getNestedTypeFieldBuilder() : null; … … 5815 6023 enumType_ = other.enumType_; 5816 6024 bitField0_ = (bitField0_ & ~0x00000010); 5817 enumTypeBuilder_ = 6025 enumTypeBuilder_ = 5818 6026 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 5819 6027 getEnumTypeFieldBuilder() : null; … … 5841 6049 extensionRange_ = other.extensionRange_; 5842 6050 bitField0_ = (bitField0_ & ~0x00000020); 5843 extensionRangeBuilder_ = 6051 extensionRangeBuilder_ = 5844 6052 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 5845 6053 getExtensionRangeFieldBuilder() : null; … … 5867 6075 oneofDecl_ = other.oneofDecl_; 5868 6076 bitField0_ = (bitField0_ & ~0x00000040); 5869 oneofDeclBuilder_ = 6077 oneofDeclBuilder_ = 5870 6078 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 5871 6079 getOneofDeclFieldBuilder() : null; … … 5882 6090 } 5883 6091 5884 public final boolean isInitialized() { 6092 @Override 6093 public final boolean isInitialized() { 5885 6094 for (int i = 0; i < getFieldCount(); i++) { 5886 6095 if (!getField(i).isInitialized()) { 5887 6096 5888 6097 return false; 5889 6098 } … … 5891 6100 for (int i = 0; i < getExtensionCount(); i++) { 5892 6101 if (!getExtension(i).isInitialized()) { 5893 6102 5894 6103 return false; 5895 6104 } … … 5897 6106 for (int i = 0; i < getNestedTypeCount(); i++) { 5898 6107 if (!getNestedType(i).isInitialized()) { 5899 6108 5900 6109 return false; 5901 6110 } … … 5903 6112 for (int i = 0; i < getEnumTypeCount(); i++) { 5904 6113 if (!getEnumType(i).isInitialized()) { 5905 6114 5906 6115 return false; 5907 6116 } … … 5909 6118 if (hasOptions()) { 5910 6119 if (!getOptions().isInitialized()) { 5911 6120 5912 6121 return false; 5913 6122 } … … 5916 6125 } 5917 6126 5918 public Builder mergeFrom( 6127 @Override 6128 public Builder mergeFrom( 5919 6129 com.google.protobuf.CodedInputStream input, 5920 6130 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 5939 6149 * <code>optional string name = 1;</code> 5940 6150 */ 5941 public boolean hasName() { 6151 @Override 6152 public boolean hasName() { 5942 6153 return ((bitField0_ & 0x00000001) == 0x00000001); 5943 6154 } … … 5945 6156 * <code>optional string name = 1;</code> 5946 6157 */ 5947 public java.lang.String getName() { 6158 @Override 6159 public java.lang.String getName() { 5948 6160 java.lang.Object ref = name_; 5949 6161 if (!(ref instanceof java.lang.String)) { … … 5962 6174 * <code>optional string name = 1;</code> 5963 6175 */ 5964 public com.google.protobuf.ByteString 6176 @Override 6177 public com.google.protobuf.ByteString 5965 6178 getNameBytes() { 5966 6179 java.lang.Object ref = name_; 5967 6180 if (ref instanceof String) { 5968 com.google.protobuf.ByteString b = 6181 com.google.protobuf.ByteString b = 5969 6182 com.google.protobuf.ByteString.copyFromUtf8( 5970 6183 (java.lang.String) ref); … … 6026 6239 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 6027 6240 */ 6028 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getFieldList() { 6241 @Override 6242 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getFieldList() { 6029 6243 if (fieldBuilder_ == null) { 6030 6244 return java.util.Collections.unmodifiableList(field_); … … 6036 6250 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 6037 6251 */ 6038 public int getFieldCount() { 6252 @Override 6253 public int getFieldCount() { 6039 6254 if (fieldBuilder_ == null) { 6040 6255 return field_.size(); … … 6046 6261 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 6047 6262 */ 6048 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getField(int index) { 6263 @Override 6264 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getField(int index) { 6049 6265 if (fieldBuilder_ == null) { 6050 6266 return field_.get(index); … … 6196 6412 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 6197 6413 */ 6198 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getFieldOrBuilder( 6414 @Override 6415 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getFieldOrBuilder( 6199 6416 int index) { 6200 6417 if (fieldBuilder_ == null) { … … 6206 6423 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 6207 6424 */ 6208 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 6425 @Override 6426 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 6209 6427 getFieldOrBuilderList() { 6210 6428 if (fieldBuilder_ != null) { … … 6232 6450 * <code>repeated .google.protobuf.FieldDescriptorProto field = 2;</code> 6233 6451 */ 6234 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder> 6452 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder> 6235 6453 getFieldBuilderList() { 6236 6454 return getFieldFieldBuilder().getBuilderList(); 6237 6455 } 6238 6456 private com.google.protobuf.RepeatedFieldBuilder< 6239 com.google.protobuf.DescriptorProtos.FieldDescriptorProto, com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 6457 com.google.protobuf.DescriptorProtos.FieldDescriptorProto, com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 6240 6458 getFieldFieldBuilder() { 6241 6459 if (fieldBuilder_ == null) { … … 6265 6483 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 6266 6484 */ 6267 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getExtensionList() { 6485 @Override 6486 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto> getExtensionList() { 6268 6487 if (extensionBuilder_ == null) { 6269 6488 return java.util.Collections.unmodifiableList(extension_); … … 6275 6494 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 6276 6495 */ 6277 public int getExtensionCount() { 6496 @Override 6497 public int getExtensionCount() { 6278 6498 if (extensionBuilder_ == null) { 6279 6499 return extension_.size(); … … 6285 6505 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 6286 6506 */ 6287 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getExtension(int index) { 6507 @Override 6508 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getExtension(int index) { 6288 6509 if (extensionBuilder_ == null) { 6289 6510 return extension_.get(index); … … 6435 6656 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 6436 6657 */ 6437 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getExtensionOrBuilder( 6658 @Override 6659 public com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder getExtensionOrBuilder( 6438 6660 int index) { 6439 6661 if (extensionBuilder_ == null) { … … 6445 6667 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 6446 6668 */ 6447 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 6669 @Override 6670 public java.util.List<? extends com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 6448 6671 getExtensionOrBuilderList() { 6449 6672 if (extensionBuilder_ != null) { … … 6471 6694 * <code>repeated .google.protobuf.FieldDescriptorProto extension = 6;</code> 6472 6695 */ 6473 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder> 6696 public java.util.List<com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder> 6474 6697 getExtensionBuilderList() { 6475 6698 return getExtensionFieldBuilder().getBuilderList(); 6476 6699 } 6477 6700 private com.google.protobuf.RepeatedFieldBuilder< 6478 com.google.protobuf.DescriptorProtos.FieldDescriptorProto, com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 6701 com.google.protobuf.DescriptorProtos.FieldDescriptorProto, com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.FieldDescriptorProtoOrBuilder> 6479 6702 getExtensionFieldBuilder() { 6480 6703 if (extensionBuilder_ == null) { … … 6504 6727 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 6505 6728 */ 6506 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> getNestedTypeList() { 6729 @Override 6730 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto> getNestedTypeList() { 6507 6731 if (nestedTypeBuilder_ == null) { 6508 6732 return java.util.Collections.unmodifiableList(nestedType_); … … 6514 6738 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 6515 6739 */ 6516 public int getNestedTypeCount() { 6740 @Override 6741 public int getNestedTypeCount() { 6517 6742 if (nestedTypeBuilder_ == null) { 6518 6743 return nestedType_.size(); … … 6524 6749 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 6525 6750 */ 6526 public com.google.protobuf.DescriptorProtos.DescriptorProto getNestedType(int index) { 6751 @Override 6752 public com.google.protobuf.DescriptorProtos.DescriptorProto getNestedType(int index) { 6527 6753 if (nestedTypeBuilder_ == null) { 6528 6754 return nestedType_.get(index); … … 6674 6900 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 6675 6901 */ 6676 public com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder getNestedTypeOrBuilder( 6902 @Override 6903 public com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder getNestedTypeOrBuilder( 6677 6904 int index) { 6678 6905 if (nestedTypeBuilder_ == null) { … … 6684 6911 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 6685 6912 */ 6686 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 6913 @Override 6914 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 6687 6915 getNestedTypeOrBuilderList() { 6688 6916 if (nestedTypeBuilder_ != null) { … … 6710 6938 * <code>repeated .google.protobuf.DescriptorProto nested_type = 3;</code> 6711 6939 */ 6712 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.Builder> 6940 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.Builder> 6713 6941 getNestedTypeBuilderList() { 6714 6942 return getNestedTypeFieldBuilder().getBuilderList(); 6715 6943 } 6716 6944 private com.google.protobuf.RepeatedFieldBuilder< 6717 com.google.protobuf.DescriptorProtos.DescriptorProto, com.google.protobuf.DescriptorProtos.DescriptorProto.Builder, com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 6945 com.google.protobuf.DescriptorProtos.DescriptorProto, com.google.protobuf.DescriptorProtos.DescriptorProto.Builder, com.google.protobuf.DescriptorProtos.DescriptorProtoOrBuilder> 6718 6946 getNestedTypeFieldBuilder() { 6719 6947 if (nestedTypeBuilder_ == null) { … … 6743 6971 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 6744 6972 */ 6745 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> getEnumTypeList() { 6973 @Override 6974 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto> getEnumTypeList() { 6746 6975 if (enumTypeBuilder_ == null) { 6747 6976 return java.util.Collections.unmodifiableList(enumType_); … … 6753 6982 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 6754 6983 */ 6755 public int getEnumTypeCount() { 6984 @Override 6985 public int getEnumTypeCount() { 6756 6986 if (enumTypeBuilder_ == null) { 6757 6987 return enumType_.size(); … … 6763 6993 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 6764 6994 */ 6765 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto getEnumType(int index) { 6995 @Override 6996 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto getEnumType(int index) { 6766 6997 if (enumTypeBuilder_ == null) { 6767 6998 return enumType_.get(index); … … 6913 7144 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 6914 7145 */ 6915 public com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder getEnumTypeOrBuilder( 7146 @Override 7147 public com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder getEnumTypeOrBuilder( 6916 7148 int index) { 6917 7149 if (enumTypeBuilder_ == null) { … … 6923 7155 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 6924 7156 */ 6925 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 7157 @Override 7158 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 6926 7159 getEnumTypeOrBuilderList() { 6927 7160 if (enumTypeBuilder_ != null) { … … 6949 7182 * <code>repeated .google.protobuf.EnumDescriptorProto enum_type = 4;</code> 6950 7183 */ 6951 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto.Builder> 7184 public java.util.List<com.google.protobuf.DescriptorProtos.EnumDescriptorProto.Builder> 6952 7185 getEnumTypeBuilderList() { 6953 7186 return getEnumTypeFieldBuilder().getBuilderList(); 6954 7187 } 6955 7188 private com.google.protobuf.RepeatedFieldBuilder< 6956 com.google.protobuf.DescriptorProtos.EnumDescriptorProto, com.google.protobuf.DescriptorProtos.EnumDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 7189 com.google.protobuf.DescriptorProtos.EnumDescriptorProto, com.google.protobuf.DescriptorProtos.EnumDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.EnumDescriptorProtoOrBuilder> 6957 7190 getEnumTypeFieldBuilder() { 6958 7191 if (enumTypeBuilder_ == null) { … … 6982 7215 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 6983 7216 */ 6984 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange> getExtensionRangeList() { 7217 @Override 7218 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange> getExtensionRangeList() { 6985 7219 if (extensionRangeBuilder_ == null) { 6986 7220 return java.util.Collections.unmodifiableList(extensionRange_); … … 6992 7226 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 6993 7227 */ 6994 public int getExtensionRangeCount() { 7228 @Override 7229 public int getExtensionRangeCount() { 6995 7230 if (extensionRangeBuilder_ == null) { 6996 7231 return extensionRange_.size(); … … 7002 7237 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 7003 7238 */ 7004 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange getExtensionRange(int index) { 7239 @Override 7240 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange getExtensionRange(int index) { 7005 7241 if (extensionRangeBuilder_ == null) { 7006 7242 return extensionRange_.get(index); … … 7152 7388 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 7153 7389 */ 7154 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder getExtensionRangeOrBuilder( 7390 @Override 7391 public com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder getExtensionRangeOrBuilder( 7155 7392 int index) { 7156 7393 if (extensionRangeBuilder_ == null) { … … 7162 7399 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 7163 7400 */ 7164 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder> 7401 @Override 7402 public java.util.List<? extends com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder> 7165 7403 getExtensionRangeOrBuilderList() { 7166 7404 if (extensionRangeBuilder_ != null) { … … 7188 7426 * <code>repeated .google.protobuf.DescriptorProto.ExtensionRange extension_range = 5;</code> 7189 7427 */ 7190 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange.Builder> 7428 public java.util.List<com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange.Builder> 7191 7429 getExtensionRangeBuilderList() { 7192 7430 return getExtensionRangeFieldBuilder().getBuilderList(); 7193 7431 } 7194 7432 private com.google.protobuf.RepeatedFieldBuilder< 7195 com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange, com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange.Builder, com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder> 7433 com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange, com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRange.Builder, com.google.protobuf.DescriptorProtos.DescriptorProto.ExtensionRangeOrBuilder> 7196 7434 getExtensionRangeFieldBuilder() { 7197 7435 if (extensionRangeBuilder_ == null) { … … 7221 7459 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 7222 7460 */ 7223 public java.util.List<com.google.protobuf.DescriptorProtos.OneofDescriptorProto> getOneofDeclList() { 7461 @Override 7462 public java.util.List<com.google.protobuf.DescriptorProtos.OneofDescriptorProto> getOneofDeclList() { 7224 7463 if (oneofDeclBuilder_ == null) { 7225 7464 return java.util.Collections.unmodifiableList(oneofDecl_); … … 7231 7470 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 7232 7471 */ 7233 public int getOneofDeclCount() { 7472 @Override 7473 public int getOneofDeclCount() { 7234 7474 if (oneofDeclBuilder_ == null) { 7235 7475 return oneofDecl_.size(); … … 7241 7481 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 7242 7482 */ 7243 public com.google.protobuf.DescriptorProtos.OneofDescriptorProto getOneofDecl(int index) { 7483 @Override 7484 public com.google.protobuf.DescriptorProtos.OneofDescriptorProto getOneofDecl(int index) { 7244 7485 if (oneofDeclBuilder_ == null) { 7245 7486 return oneofDecl_.get(index); … … 7391 7632 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 7392 7633 */ 7393 public com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder getOneofDeclOrBuilder( 7634 @Override 7635 public com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder getOneofDeclOrBuilder( 7394 7636 int index) { 7395 7637 if (oneofDeclBuilder_ == null) { … … 7401 7643 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 7402 7644 */ 7403 public java.util.List<? extends com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder> 7645 @Override 7646 public java.util.List<? extends com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder> 7404 7647 getOneofDeclOrBuilderList() { 7405 7648 if (oneofDeclBuilder_ != null) { … … 7427 7670 * <code>repeated .google.protobuf.OneofDescriptorProto oneof_decl = 8;</code> 7428 7671 */ 7429 public java.util.List<com.google.protobuf.DescriptorProtos.OneofDescriptorProto.Builder> 7672 public java.util.List<com.google.protobuf.DescriptorProtos.OneofDescriptorProto.Builder> 7430 7673 getOneofDeclBuilderList() { 7431 7674 return getOneofDeclFieldBuilder().getBuilderList(); 7432 7675 } 7433 7676 private com.google.protobuf.RepeatedFieldBuilder< 7434 com.google.protobuf.DescriptorProtos.OneofDescriptorProto, com.google.protobuf.DescriptorProtos.OneofDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder> 7677 com.google.protobuf.DescriptorProtos.OneofDescriptorProto, com.google.protobuf.DescriptorProtos.OneofDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.OneofDescriptorProtoOrBuilder> 7435 7678 getOneofDeclFieldBuilder() { 7436 7679 if (oneofDeclBuilder_ == null) { … … 7451 7694 * <code>optional .google.protobuf.MessageOptions options = 7;</code> 7452 7695 */ 7453 public boolean hasOptions() { 7696 @Override 7697 public boolean hasOptions() { 7454 7698 return ((bitField0_ & 0x00000080) == 0x00000080); 7455 7699 } … … 7457 7701 * <code>optional .google.protobuf.MessageOptions options = 7;</code> 7458 7702 */ 7459 public com.google.protobuf.DescriptorProtos.MessageOptions getOptions() { 7703 @Override 7704 public com.google.protobuf.DescriptorProtos.MessageOptions getOptions() { 7460 7705 if (optionsBuilder_ == null) { 7461 7706 return options_; … … 7537 7782 * <code>optional .google.protobuf.MessageOptions options = 7;</code> 7538 7783 */ 7539 public com.google.protobuf.DescriptorProtos.MessageOptionsOrBuilder getOptionsOrBuilder() { 7784 @Override 7785 public com.google.protobuf.DescriptorProtos.MessageOptionsOrBuilder getOptionsOrBuilder() { 7540 7786 if (optionsBuilder_ != null) { 7541 7787 return optionsBuilder_.getMessageOrBuilder(); … … 7548 7794 */ 7549 7795 private com.google.protobuf.SingleFieldBuilder< 7550 com.google.protobuf.DescriptorProtos.MessageOptions, com.google.protobuf.DescriptorProtos.MessageOptions.Builder, com.google.protobuf.DescriptorProtos.MessageOptionsOrBuilder> 7796 com.google.protobuf.DescriptorProtos.MessageOptions, com.google.protobuf.DescriptorProtos.MessageOptions.Builder, com.google.protobuf.DescriptorProtos.MessageOptionsOrBuilder> 7551 7797 getOptionsFieldBuilder() { 7552 7798 if (optionsBuilder_ == null) { … … 7790 8036 } 7791 8037 7792 public FieldDescriptorProto getDefaultInstanceForType() { 8038 @Override 8039 public FieldDescriptorProto getDefaultInstanceForType() { 7793 8040 return defaultInstance; 7794 8041 } … … 7909 8156 } 7910 8157 7911 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 8158 @Override 8159 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 7912 8160 internalGetFieldAccessorTable() { 7913 8161 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FieldDescriptorProto_fieldAccessorTable … … 7918 8166 public static com.google.protobuf.Parser<FieldDescriptorProto> PARSER = 7919 8167 new com.google.protobuf.AbstractParser<FieldDescriptorProto>() { 7920 public FieldDescriptorProto parsePartialFrom( 8168 @Override 8169 public FieldDescriptorProto parsePartialFrom( 7921 8170 com.google.protobuf.CodedInputStream input, 7922 8171 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 8154 8403 8155 8404 8156 public final int getNumber() { return value; } 8405 @Override 8406 public final int getNumber() { return value; } 8157 8407 8158 8408 public static Type valueOf(int value) { … … 8187 8437 internalValueMap = 8188 8438 new com.google.protobuf.Internal.EnumLiteMap<Type>() { 8189 public Type findValueByNumber(int number) { 8439 @Override 8440 public Type findValueByNumber(int number) { 8190 8441 return Type.valueOf(number); 8191 8442 } 8192 8443 }; 8193 8444 8194 public final com.google.protobuf.Descriptors.EnumValueDescriptor 8445 @Override 8446 public final com.google.protobuf.Descriptors.EnumValueDescriptor 8195 8447 getValueDescriptor() { 8196 8448 return getDescriptor().getValues().get(index); 8197 8449 } 8198 public final com.google.protobuf.Descriptors.EnumDescriptor 8450 @Override 8451 public final com.google.protobuf.Descriptors.EnumDescriptor 8199 8452 getDescriptorForType() { 8200 8453 return getDescriptor(); … … 8276 8529 8277 8530 8278 public final int getNumber() { return value; } 8531 @Override 8532 public final int getNumber() { return value; } 8279 8533 8280 8534 public static Label valueOf(int value) { … … 8294 8548 internalValueMap = 8295 8549 new com.google.protobuf.Internal.EnumLiteMap<Label>() { 8296 public Label findValueByNumber(int number) { 8550 @Override 8551 public Label findValueByNumber(int number) { 8297 8552 return Label.valueOf(number); 8298 8553 } 8299 8554 }; 8300 8555 8301 public final com.google.protobuf.Descriptors.EnumValueDescriptor 8556 @Override 8557 public final com.google.protobuf.Descriptors.EnumValueDescriptor 8302 8558 getValueDescriptor() { 8303 8559 return getDescriptor().getValues().get(index); 8304 8560 } 8305 public final com.google.protobuf.Descriptors.EnumDescriptor 8561 @Override 8562 public final com.google.protobuf.Descriptors.EnumDescriptor 8306 8563 getDescriptorForType() { 8307 8564 return getDescriptor(); … … 8340 8597 * <code>optional string name = 1;</code> 8341 8598 */ 8342 public boolean hasName() { 8599 @Override 8600 public boolean hasName() { 8343 8601 return ((bitField0_ & 0x00000001) == 0x00000001); 8344 8602 } … … 8346 8604 * <code>optional string name = 1;</code> 8347 8605 */ 8348 public java.lang.String getName() { 8606 @Override 8607 public java.lang.String getName() { 8349 8608 java.lang.Object ref = name_; 8350 8609 if (ref instanceof java.lang.String) { 8351 8610 return (java.lang.String) ref; 8352 8611 } else { 8353 com.google.protobuf.ByteString bs = 8612 com.google.protobuf.ByteString bs = 8354 8613 (com.google.protobuf.ByteString) ref; 8355 8614 java.lang.String s = bs.toStringUtf8(); … … 8363 8622 * <code>optional string name = 1;</code> 8364 8623 */ 8365 public com.google.protobuf.ByteString 8624 @Override 8625 public com.google.protobuf.ByteString 8366 8626 getNameBytes() { 8367 8627 java.lang.Object ref = name_; 8368 8628 if (ref instanceof java.lang.String) { 8369 com.google.protobuf.ByteString b = 8629 com.google.protobuf.ByteString b = 8370 8630 com.google.protobuf.ByteString.copyFromUtf8( 8371 8631 (java.lang.String) ref); … … 8382 8642 * <code>optional int32 number = 3;</code> 8383 8643 */ 8384 public boolean hasNumber() { 8644 @Override 8645 public boolean hasNumber() { 8385 8646 return ((bitField0_ & 0x00000002) == 0x00000002); 8386 8647 } … … 8388 8649 * <code>optional int32 number = 3;</code> 8389 8650 */ 8390 public int getNumber() { 8651 @Override 8652 public int getNumber() { 8391 8653 return number_; 8392 8654 } … … 8397 8659 * <code>optional .google.protobuf.FieldDescriptorProto.Label label = 4;</code> 8398 8660 */ 8399 public boolean hasLabel() { 8661 @Override 8662 public boolean hasLabel() { 8400 8663 return ((bitField0_ & 0x00000004) == 0x00000004); 8401 8664 } … … 8403 8666 * <code>optional .google.protobuf.FieldDescriptorProto.Label label = 4;</code> 8404 8667 */ 8405 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Label getLabel() { 8668 @Override 8669 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Label getLabel() { 8406 8670 return label_; 8407 8671 } … … 8417 8681 * </pre> 8418 8682 */ 8419 public boolean hasType() { 8683 @Override 8684 public boolean hasType() { 8420 8685 return ((bitField0_ & 0x00000008) == 0x00000008); 8421 8686 } … … 8428 8693 * </pre> 8429 8694 */ 8430 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Type getType() { 8695 @Override 8696 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Type getType() { 8431 8697 return type_; 8432 8698 } … … 8445 8711 * </pre> 8446 8712 */ 8447 public boolean hasTypeName() { 8713 @Override 8714 public boolean hasTypeName() { 8448 8715 return ((bitField0_ & 0x00000010) == 0x00000010); 8449 8716 } … … 8459 8726 * </pre> 8460 8727 */ 8461 public java.lang.String getTypeName() { 8728 @Override 8729 public java.lang.String getTypeName() { 8462 8730 java.lang.Object ref = typeName_; 8463 8731 if (ref instanceof java.lang.String) { 8464 8732 return (java.lang.String) ref; 8465 8733 } else { 8466 com.google.protobuf.ByteString bs = 8734 com.google.protobuf.ByteString bs = 8467 8735 (com.google.protobuf.ByteString) ref; 8468 8736 java.lang.String s = bs.toStringUtf8(); … … 8484 8752 * </pre> 8485 8753 */ 8486 public com.google.protobuf.ByteString 8754 @Override 8755 public com.google.protobuf.ByteString 8487 8756 getTypeNameBytes() { 8488 8757 java.lang.Object ref = typeName_; 8489 8758 if (ref instanceof java.lang.String) { 8490 com.google.protobuf.ByteString b = 8759 com.google.protobuf.ByteString b = 8491 8760 com.google.protobuf.ByteString.copyFromUtf8( 8492 8761 (java.lang.String) ref); … … 8508 8777 * </pre> 8509 8778 */ 8510 public boolean hasExtendee() { 8779 @Override 8780 public boolean hasExtendee() { 8511 8781 return ((bitField0_ & 0x00000020) == 0x00000020); 8512 8782 } … … 8519 8789 * </pre> 8520 8790 */ 8521 public java.lang.String getExtendee() { 8791 @Override 8792 public java.lang.String getExtendee() { 8522 8793 java.lang.Object ref = extendee_; 8523 8794 if (ref instanceof java.lang.String) { 8524 8795 return (java.lang.String) ref; 8525 8796 } else { 8526 com.google.protobuf.ByteString bs = 8797 com.google.protobuf.ByteString bs = 8527 8798 (com.google.protobuf.ByteString) ref; 8528 8799 java.lang.String s = bs.toStringUtf8(); … … 8541 8812 * </pre> 8542 8813 */ 8543 public com.google.protobuf.ByteString 8814 @Override 8815 public com.google.protobuf.ByteString 8544 8816 getExtendeeBytes() { 8545 8817 java.lang.Object ref = extendee_; 8546 8818 if (ref instanceof java.lang.String) { 8547 com.google.protobuf.ByteString b = 8819 com.google.protobuf.ByteString b = 8548 8820 com.google.protobuf.ByteString.copyFromUtf8( 8549 8821 (java.lang.String) ref); … … 8568 8840 * </pre> 8569 8841 */ 8570 public boolean hasDefaultValue() { 8842 @Override 8843 public boolean hasDefaultValue() { 8571 8844 return ((bitField0_ & 0x00000040) == 0x00000040); 8572 8845 } … … 8582 8855 * </pre> 8583 8856 */ 8584 public java.lang.String getDefaultValue() { 8857 @Override 8858 public java.lang.String getDefaultValue() { 8585 8859 java.lang.Object ref = defaultValue_; 8586 8860 if (ref instanceof java.lang.String) { 8587 8861 return (java.lang.String) ref; 8588 8862 } else { 8589 com.google.protobuf.ByteString bs = 8863 com.google.protobuf.ByteString bs = 8590 8864 (com.google.protobuf.ByteString) ref; 8591 8865 java.lang.String s = bs.toStringUtf8(); … … 8607 8881 * </pre> 8608 8882 */ 8609 public com.google.protobuf.ByteString 8883 @Override 8884 public com.google.protobuf.ByteString 8610 8885 getDefaultValueBytes() { 8611 8886 java.lang.Object ref = defaultValue_; 8612 8887 if (ref instanceof java.lang.String) { 8613 com.google.protobuf.ByteString b = 8888 com.google.protobuf.ByteString b = 8614 8889 com.google.protobuf.ByteString.copyFromUtf8( 8615 8890 (java.lang.String) ref); … … 8633 8908 * </pre> 8634 8909 */ 8635 public boolean hasOneofIndex() { 8910 @Override 8911 public boolean hasOneofIndex() { 8636 8912 return ((bitField0_ & 0x00000080) == 0x00000080); 8637 8913 } … … 8646 8922 * </pre> 8647 8923 */ 8648 public int getOneofIndex() { 8924 @Override 8925 public int getOneofIndex() { 8649 8926 return oneofIndex_; 8650 8927 } … … 8655 8932 * <code>optional .google.protobuf.FieldOptions options = 8;</code> 8656 8933 */ 8657 public boolean hasOptions() { 8934 @Override 8935 public boolean hasOptions() { 8658 8936 return ((bitField0_ & 0x00000100) == 0x00000100); 8659 8937 } … … 8661 8939 * <code>optional .google.protobuf.FieldOptions options = 8;</code> 8662 8940 */ 8663 public com.google.protobuf.DescriptorProtos.FieldOptions getOptions() { 8941 @Override 8942 public com.google.protobuf.DescriptorProtos.FieldOptions getOptions() { 8664 8943 return options_; 8665 8944 } … … 8667 8946 * <code>optional .google.protobuf.FieldOptions options = 8;</code> 8668 8947 */ 8669 public com.google.protobuf.DescriptorProtos.FieldOptionsOrBuilder getOptionsOrBuilder() { 8948 @Override 8949 public com.google.protobuf.DescriptorProtos.FieldOptionsOrBuilder getOptionsOrBuilder() { 8670 8950 return options_; 8671 8951 } … … 8683 8963 } 8684 8964 private byte memoizedIsInitialized = -1; 8685 public final boolean isInitialized() { 8965 @Override 8966 public final boolean isInitialized() { 8686 8967 byte isInitialized = memoizedIsInitialized; 8687 8968 if (isInitialized == 1) return true; … … 8698 8979 } 8699 8980 8700 public void writeTo(com.google.protobuf.CodedOutputStream output) 8981 @Override 8982 public void writeTo(com.google.protobuf.CodedOutputStream output) 8701 8983 throws java.io.IOException { 8702 8984 getSerializedSize(); … … 8732 9014 8733 9015 private int memoizedSerializedSize = -1; 8734 public int getSerializedSize() { 9016 @Override 9017 public int getSerializedSize() { 8735 9018 int size = memoizedSerializedSize; 8736 9019 if (size != -1) return size; … … 8839 9122 8840 9123 public static Builder newBuilder() { return Builder.create(); } 8841 public Builder newBuilderForType() { return newBuilder(); } 9124 @Override 9125 public Builder newBuilderForType() { return newBuilder(); } 8842 9126 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.FieldDescriptorProto prototype) { 8843 9127 return newBuilder().mergeFrom(prototype); 8844 9128 } 8845 public Builder toBuilder() { return newBuilder(this); } 9129 @Override 9130 public Builder toBuilder() { return newBuilder(this); } 8846 9131 8847 9132 @java.lang.Override … … 8867 9152 } 8868 9153 8869 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 9154 @Override 9155 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 8870 9156 internalGetFieldAccessorTable() { 8871 9157 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FieldDescriptorProto_fieldAccessorTable … … 8893 9179 } 8894 9180 8895 public Builder clear() { 9181 @Override 9182 public Builder clear() { 8896 9183 super.clear(); 8897 9184 name_ = ""; … … 8920 9207 } 8921 9208 8922 public Builder clone() { 9209 @Override 9210 public Builder clone() { 8923 9211 return create().mergeFrom(buildPartial()); 8924 9212 } 8925 9213 8926 public com.google.protobuf.Descriptors.Descriptor 9214 @Override 9215 public com.google.protobuf.Descriptors.Descriptor 8927 9216 getDescriptorForType() { 8928 9217 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FieldDescriptorProto_descriptor; 8929 9218 } 8930 9219 8931 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getDefaultInstanceForType() { 9220 @Override 9221 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto getDefaultInstanceForType() { 8932 9222 return com.google.protobuf.DescriptorProtos.FieldDescriptorProto.getDefaultInstance(); 8933 9223 } 8934 9224 8935 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto build() { 9225 @Override 9226 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto build() { 8936 9227 com.google.protobuf.DescriptorProtos.FieldDescriptorProto result = buildPartial(); 8937 9228 if (!result.isInitialized()) { … … 8941 9232 } 8942 9233 8943 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto buildPartial() { 9234 @Override 9235 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto buildPartial() { 8944 9236 com.google.protobuf.DescriptorProtos.FieldDescriptorProto result = new com.google.protobuf.DescriptorProtos.FieldDescriptorProto(this); 8945 9237 int from_bitField0_ = bitField0_; … … 8990 9282 } 8991 9283 8992 public Builder mergeFrom(com.google.protobuf.Message other) { 9284 @Override 9285 public Builder mergeFrom(com.google.protobuf.Message other) { 8993 9286 if (other instanceof com.google.protobuf.DescriptorProtos.FieldDescriptorProto) { 8994 9287 return mergeFrom((com.google.protobuf.DescriptorProtos.FieldDescriptorProto)other); … … 9040 9333 } 9041 9334 9042 public final boolean isInitialized() { 9335 @Override 9336 public final boolean isInitialized() { 9043 9337 if (hasOptions()) { 9044 9338 if (!getOptions().isInitialized()) { 9045 9339 9046 9340 return false; 9047 9341 } … … 9050 9344 } 9051 9345 9052 public Builder mergeFrom( 9346 @Override 9347 public Builder mergeFrom( 9053 9348 com.google.protobuf.CodedInputStream input, 9054 9349 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 9073 9368 * <code>optional string name = 1;</code> 9074 9369 */ 9075 public boolean hasName() { 9370 @Override 9371 public boolean hasName() { 9076 9372 return ((bitField0_ & 0x00000001) == 0x00000001); 9077 9373 } … … 9079 9375 * <code>optional string name = 1;</code> 9080 9376 */ 9081 public java.lang.String getName() { 9377 @Override 9378 public java.lang.String getName() { 9082 9379 java.lang.Object ref = name_; 9083 9380 if (!(ref instanceof java.lang.String)) { … … 9096 9393 * <code>optional string name = 1;</code> 9097 9394 */ 9098 public com.google.protobuf.ByteString 9395 @Override 9396 public com.google.protobuf.ByteString 9099 9397 getNameBytes() { 9100 9398 java.lang.Object ref = name_; 9101 9399 if (ref instanceof String) { 9102 com.google.protobuf.ByteString b = 9400 com.google.protobuf.ByteString b = 9103 9401 com.google.protobuf.ByteString.copyFromUtf8( 9104 9402 (java.lang.String) ref); … … 9149 9447 * <code>optional int32 number = 3;</code> 9150 9448 */ 9151 public boolean hasNumber() { 9449 @Override 9450 public boolean hasNumber() { 9152 9451 return ((bitField0_ & 0x00000002) == 0x00000002); 9153 9452 } … … 9155 9454 * <code>optional int32 number = 3;</code> 9156 9455 */ 9157 public int getNumber() { 9456 @Override 9457 public int getNumber() { 9158 9458 return number_; 9159 9459 } … … 9181 9481 * <code>optional .google.protobuf.FieldDescriptorProto.Label label = 4;</code> 9182 9482 */ 9183 public boolean hasLabel() { 9483 @Override 9484 public boolean hasLabel() { 9184 9485 return ((bitField0_ & 0x00000004) == 0x00000004); 9185 9486 } … … 9187 9488 * <code>optional .google.protobuf.FieldDescriptorProto.Label label = 4;</code> 9188 9489 */ 9189 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Label getLabel() { 9490 @Override 9491 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Label getLabel() { 9190 9492 return label_; 9191 9493 } … … 9221 9523 * </pre> 9222 9524 */ 9223 public boolean hasType() { 9525 @Override 9526 public boolean hasType() { 9224 9527 return ((bitField0_ & 0x00000008) == 0x00000008); 9225 9528 } … … 9232 9535 * </pre> 9233 9536 */ 9234 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Type getType() { 9537 @Override 9538 public com.google.protobuf.DescriptorProtos.FieldDescriptorProto.Type getType() { 9235 9539 return type_; 9236 9540 } … … 9279 9583 * </pre> 9280 9584 */ 9281 public boolean hasTypeName() { 9585 @Override 9586 public boolean hasTypeName() { 9282 9587 return ((bitField0_ & 0x00000010) == 0x00000010); 9283 9588 } … … 9293 9598 * </pre> 9294 9599 */ 9295 public java.lang.String getTypeName() { 9600 @Override 9601 public java.lang.String getTypeName() { 9296 9602 java.lang.Object ref = typeName_; 9297 9603 if (!(ref instanceof java.lang.String)) { … … 9318 9624 * </pre> 9319 9625 */ 9320 public com.google.protobuf.ByteString 9626 @Override 9627 public com.google.protobuf.ByteString 9321 9628 getTypeNameBytes() { 9322 9629 java.lang.Object ref = typeName_; 9323 9630 if (ref instanceof String) { 9324 com.google.protobuf.ByteString b = 9631 com.google.protobuf.ByteString b = 9325 9632 com.google.protobuf.ByteString.copyFromUtf8( 9326 9633 (java.lang.String) ref); … … 9400 9707 * </pre> 9401 9708 */ 9402 public boolean hasExtendee() { 9709 @Override 9710 public boolean hasExtendee() { 9403 9711 return ((bitField0_ & 0x00000020) == 0x00000020); 9404 9712 } … … 9411 9719 * </pre> 9412 9720 */ 9413 public java.lang.String getExtendee() { 9721 @Override 9722 public java.lang.String getExtendee() { 9414 9723 java.lang.Object ref = extendee_; 9415 9724 if (!(ref instanceof java.lang.String)) { … … 9433 9742 * </pre> 9434 9743 */ 9435 public com.google.protobuf.ByteString 9744 @Override 9745 public com.google.protobuf.ByteString 9436 9746 getExtendeeBytes() { 9437 9747 java.lang.Object ref = extendee_; 9438 9748 if (ref instanceof String) { 9439 com.google.protobuf.ByteString b = 9749 com.google.protobuf.ByteString b = 9440 9750 com.google.protobuf.ByteString.copyFromUtf8( 9441 9751 (java.lang.String) ref); … … 9509 9819 * </pre> 9510 9820 */ 9511 public boolean hasDefaultValue() { 9821 @Override 9822 public boolean hasDefaultValue() { 9512 9823 return ((bitField0_ & 0x00000040) == 0x00000040); 9513 9824 } … … 9523 9834 * </pre> 9524 9835 */ 9525 public java.lang.String getDefaultValue() { 9836 @Override 9837 public java.lang.String getDefaultValue() { 9526 9838 java.lang.Object ref = defaultValue_; 9527 9839 if (!(ref instanceof java.lang.String)) { … … 9548 9860 * </pre> 9549 9861 */ 9550 public com.google.protobuf.ByteString 9862 @Override 9863 public com.google.protobuf.ByteString 9551 9864 getDefaultValueBytes() { 9552 9865 java.lang.Object ref = defaultValue_; 9553 9866 if (ref instanceof String) { 9554 com.google.protobuf.ByteString b = 9867 com.google.protobuf.ByteString b = 9555 9868 com.google.protobuf.ByteString.copyFromUtf8( 9556 9869 (java.lang.String) ref); … … 9632 9945 * </pre> 9633 9946 */ 9634 public boolean hasOneofIndex() { 9947 @Override 9948 public boolean hasOneofIndex() { 9635 9949 return ((bitField0_ & 0x00000080) == 0x00000080); 9636 9950 } … … 9645 9959 * </pre> 9646 9960 */ 9647 public int getOneofIndex() { 9961 @Override 9962 public int getOneofIndex() { 9648 9963 return oneofIndex_; 9649 9964 } … … 9687 10002 * <code>optional .google.protobuf.FieldOptions options = 8;</code> 9688 10003 */ 9689 public boolean hasOptions() { 10004 @Override 10005 public boolean hasOptions() { 9690 10006 return ((bitField0_ & 0x00000100) == 0x00000100); 9691 10007 } … … 9693 10009 * <code>optional .google.protobuf.FieldOptions options = 8;</code> 9694 10010 */ 9695 public com.google.protobuf.DescriptorProtos.FieldOptions getOptions() { 10011 @Override 10012 public com.google.protobuf.DescriptorProtos.FieldOptions getOptions() { 9696 10013 if (optionsBuilder_ == null) { 9697 10014 return options_; … … 9773 10090 * <code>optional .google.protobuf.FieldOptions options = 8;</code> 9774 10091 */ 9775 public com.google.protobuf.DescriptorProtos.FieldOptionsOrBuilder getOptionsOrBuilder() { 10092 @Override 10093 public com.google.protobuf.DescriptorProtos.FieldOptionsOrBuilder getOptionsOrBuilder() { 9776 10094 if (optionsBuilder_ != null) { 9777 10095 return optionsBuilder_.getMessageOrBuilder(); … … 9784 10102 */ 9785 10103 private com.google.protobuf.SingleFieldBuilder< 9786 com.google.protobuf.DescriptorProtos.FieldOptions, com.google.protobuf.DescriptorProtos.FieldOptions.Builder, com.google.protobuf.DescriptorProtos.FieldOptionsOrBuilder> 10104 com.google.protobuf.DescriptorProtos.FieldOptions, com.google.protobuf.DescriptorProtos.FieldOptions.Builder, com.google.protobuf.DescriptorProtos.FieldOptionsOrBuilder> 9787 10105 getOptionsFieldBuilder() { 9788 10106 if (optionsBuilder_ == null) { … … 9848 10166 } 9849 10167 9850 public OneofDescriptorProto getDefaultInstanceForType() { 10168 @Override 10169 public OneofDescriptorProto getDefaultInstanceForType() { 9851 10170 return defaultInstance; 9852 10171 } … … 9904 10223 } 9905 10224 9906 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 10225 @Override 10226 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 9907 10227 internalGetFieldAccessorTable() { 9908 10228 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_OneofDescriptorProto_fieldAccessorTable … … 9913 10233 public static com.google.protobuf.Parser<OneofDescriptorProto> PARSER = 9914 10234 new com.google.protobuf.AbstractParser<OneofDescriptorProto>() { 9915 public OneofDescriptorProto parsePartialFrom( 10235 @Override 10236 public OneofDescriptorProto parsePartialFrom( 9916 10237 com.google.protobuf.CodedInputStream input, 9917 10238 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 9932 10253 * <code>optional string name = 1;</code> 9933 10254 */ 9934 public boolean hasName() { 10255 @Override 10256 public boolean hasName() { 9935 10257 return ((bitField0_ & 0x00000001) == 0x00000001); 9936 10258 } … … 9938 10260 * <code>optional string name = 1;</code> 9939 10261 */ 9940 public java.lang.String getName() { 10262 @Override 10263 public java.lang.String getName() { 9941 10264 java.lang.Object ref = name_; 9942 10265 if (ref instanceof java.lang.String) { 9943 10266 return (java.lang.String) ref; 9944 10267 } else { 9945 com.google.protobuf.ByteString bs = 10268 com.google.protobuf.ByteString bs = 9946 10269 (com.google.protobuf.ByteString) ref; 9947 10270 java.lang.String s = bs.toStringUtf8(); … … 9955 10278 * <code>optional string name = 1;</code> 9956 10279 */ 9957 public com.google.protobuf.ByteString 10280 @Override 10281 public com.google.protobuf.ByteString 9958 10282 getNameBytes() { 9959 10283 java.lang.Object ref = name_; 9960 10284 if (ref instanceof java.lang.String) { 9961 com.google.protobuf.ByteString b = 10285 com.google.protobuf.ByteString b = 9962 10286 com.google.protobuf.ByteString.copyFromUtf8( 9963 10287 (java.lang.String) ref); … … 9973 10297 } 9974 10298 private byte memoizedIsInitialized = -1; 9975 public final boolean isInitialized() { 10299 @Override 10300 public final boolean isInitialized() { 9976 10301 byte isInitialized = memoizedIsInitialized; 9977 10302 if (isInitialized == 1) return true; … … 9982 10307 } 9983 10308 9984 public void writeTo(com.google.protobuf.CodedOutputStream output) 10309 @Override 10310 public void writeTo(com.google.protobuf.CodedOutputStream output) 9985 10311 throws java.io.IOException { 9986 10312 getSerializedSize(); … … 9992 10318 9993 10319 private int memoizedSerializedSize = -1; 9994 public int getSerializedSize() { 10320 @Override 10321 public int getSerializedSize() { 9995 10322 int size = memoizedSerializedSize; 9996 10323 if (size != -1) return size; … … 10067 10394 10068 10395 public static Builder newBuilder() { return Builder.create(); } 10069 public Builder newBuilderForType() { return newBuilder(); } 10396 @Override 10397 public Builder newBuilderForType() { return newBuilder(); } 10070 10398 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.OneofDescriptorProto prototype) { 10071 10399 return newBuilder().mergeFrom(prototype); 10072 10400 } 10073 public Builder toBuilder() { return newBuilder(this); } 10401 @Override 10402 public Builder toBuilder() { return newBuilder(this); } 10074 10403 10075 10404 @java.lang.Override … … 10095 10424 } 10096 10425 10097 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 10426 @Override 10427 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 10098 10428 internalGetFieldAccessorTable() { 10099 10429 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_OneofDescriptorProto_fieldAccessorTable … … 10120 10450 } 10121 10451 10122 public Builder clear() { 10452 @Override 10453 public Builder clear() { 10123 10454 super.clear(); 10124 10455 name_ = ""; … … 10127 10458 } 10128 10459 10129 public Builder clone() { 10460 @Override 10461 public Builder clone() { 10130 10462 return create().mergeFrom(buildPartial()); 10131 10463 } 10132 10464 10133 public com.google.protobuf.Descriptors.Descriptor 10465 @Override 10466 public com.google.protobuf.Descriptors.Descriptor 10134 10467 getDescriptorForType() { 10135 10468 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_OneofDescriptorProto_descriptor; 10136 10469 } 10137 10470 10138 public com.google.protobuf.DescriptorProtos.OneofDescriptorProto getDefaultInstanceForType() { 10471 @Override 10472 public com.google.protobuf.DescriptorProtos.OneofDescriptorProto getDefaultInstanceForType() { 10139 10473 return com.google.protobuf.DescriptorProtos.OneofDescriptorProto.getDefaultInstance(); 10140 10474 } 10141 10475 10142 public com.google.protobuf.DescriptorProtos.OneofDescriptorProto build() { 10476 @Override 10477 public com.google.protobuf.DescriptorProtos.OneofDescriptorProto build() { 10143 10478 com.google.protobuf.DescriptorProtos.OneofDescriptorProto result = buildPartial(); 10144 10479 if (!result.isInitialized()) { … … 10148 10483 } 10149 10484 10150 public com.google.protobuf.DescriptorProtos.OneofDescriptorProto buildPartial() { 10485 @Override 10486 public com.google.protobuf.DescriptorProtos.OneofDescriptorProto buildPartial() { 10151 10487 com.google.protobuf.DescriptorProtos.OneofDescriptorProto result = new com.google.protobuf.DescriptorProtos.OneofDescriptorProto(this); 10152 10488 int from_bitField0_ = bitField0_; … … 10161 10497 } 10162 10498 10163 public Builder mergeFrom(com.google.protobuf.Message other) { 10499 @Override 10500 public Builder mergeFrom(com.google.protobuf.Message other) { 10164 10501 if (other instanceof com.google.protobuf.DescriptorProtos.OneofDescriptorProto) { 10165 10502 return mergeFrom((com.google.protobuf.DescriptorProtos.OneofDescriptorProto)other); … … 10181 10518 } 10182 10519 10183 public final boolean isInitialized() { 10520 @Override 10521 public final boolean isInitialized() { 10184 10522 return true; 10185 10523 } 10186 10524 10187 public Builder mergeFrom( 10525 @Override 10526 public Builder mergeFrom( 10188 10527 com.google.protobuf.CodedInputStream input, 10189 10528 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 10208 10547 * <code>optional string name = 1;</code> 10209 10548 */ 10210 public boolean hasName() { 10549 @Override 10550 public boolean hasName() { 10211 10551 return ((bitField0_ & 0x00000001) == 0x00000001); 10212 10552 } … … 10214 10554 * <code>optional string name = 1;</code> 10215 10555 */ 10216 public java.lang.String getName() { 10556 @Override 10557 public java.lang.String getName() { 10217 10558 java.lang.Object ref = name_; 10218 10559 if (!(ref instanceof java.lang.String)) { … … 10231 10572 * <code>optional string name = 1;</code> 10232 10573 */ 10233 public com.google.protobuf.ByteString 10574 @Override 10575 public com.google.protobuf.ByteString 10234 10576 getNameBytes() { 10235 10577 java.lang.Object ref = name_; 10236 10578 if (ref instanceof String) { 10237 com.google.protobuf.ByteString b = 10579 com.google.protobuf.ByteString b = 10238 10580 com.google.protobuf.ByteString.copyFromUtf8( 10239 10581 (java.lang.String) ref); … … 10312 10654 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 10313 10655 */ 10314 java.util.List<com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto> 10656 java.util.List<com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto> 10315 10657 getValueList(); 10316 10658 /** … … 10325 10667 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 10326 10668 */ 10327 java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder> 10669 java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder> 10328 10670 getValueOrBuilderList(); 10329 10671 /** … … 10369 10711 } 10370 10712 10371 public EnumDescriptorProto getDefaultInstanceForType() { 10713 @Override 10714 public EnumDescriptorProto getDefaultInstanceForType() { 10372 10715 return defaultInstance; 10373 10716 } … … 10449 10792 } 10450 10793 10451 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 10794 @Override 10795 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 10452 10796 internalGetFieldAccessorTable() { 10453 10797 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumDescriptorProto_fieldAccessorTable … … 10458 10802 public static com.google.protobuf.Parser<EnumDescriptorProto> PARSER = 10459 10803 new com.google.protobuf.AbstractParser<EnumDescriptorProto>() { 10460 public EnumDescriptorProto parsePartialFrom( 10804 @Override 10805 public EnumDescriptorProto parsePartialFrom( 10461 10806 com.google.protobuf.CodedInputStream input, 10462 10807 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 10477 10822 * <code>optional string name = 1;</code> 10478 10823 */ 10479 public boolean hasName() { 10824 @Override 10825 public boolean hasName() { 10480 10826 return ((bitField0_ & 0x00000001) == 0x00000001); 10481 10827 } … … 10483 10829 * <code>optional string name = 1;</code> 10484 10830 */ 10485 public java.lang.String getName() { 10831 @Override 10832 public java.lang.String getName() { 10486 10833 java.lang.Object ref = name_; 10487 10834 if (ref instanceof java.lang.String) { 10488 10835 return (java.lang.String) ref; 10489 10836 } else { 10490 com.google.protobuf.ByteString bs = 10837 com.google.protobuf.ByteString bs = 10491 10838 (com.google.protobuf.ByteString) ref; 10492 10839 java.lang.String s = bs.toStringUtf8(); … … 10500 10847 * <code>optional string name = 1;</code> 10501 10848 */ 10502 public com.google.protobuf.ByteString 10849 @Override 10850 public com.google.protobuf.ByteString 10503 10851 getNameBytes() { 10504 10852 java.lang.Object ref = name_; 10505 10853 if (ref instanceof java.lang.String) { 10506 com.google.protobuf.ByteString b = 10854 com.google.protobuf.ByteString b = 10507 10855 com.google.protobuf.ByteString.copyFromUtf8( 10508 10856 (java.lang.String) ref); … … 10519 10867 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 10520 10868 */ 10521 public java.util.List<com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto> getValueList() { 10869 @Override 10870 public java.util.List<com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto> getValueList() { 10522 10871 return value_; 10523 10872 } … … 10525 10874 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 10526 10875 */ 10527 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder> 10876 @Override 10877 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder> 10528 10878 getValueOrBuilderList() { 10529 10879 return value_; … … 10532 10882 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 10533 10883 */ 10534 public int getValueCount() { 10884 @Override 10885 public int getValueCount() { 10535 10886 return value_.size(); 10536 10887 } … … 10538 10889 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 10539 10890 */ 10540 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto getValue(int index) { 10891 @Override 10892 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto getValue(int index) { 10541 10893 return value_.get(index); 10542 10894 } … … 10544 10896 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 10545 10897 */ 10546 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder getValueOrBuilder( 10898 @Override 10899 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder getValueOrBuilder( 10547 10900 int index) { 10548 10901 return value_.get(index); … … 10554 10907 * <code>optional .google.protobuf.EnumOptions options = 3;</code> 10555 10908 */ 10556 public boolean hasOptions() { 10909 @Override 10910 public boolean hasOptions() { 10557 10911 return ((bitField0_ & 0x00000002) == 0x00000002); 10558 10912 } … … 10560 10914 * <code>optional .google.protobuf.EnumOptions options = 3;</code> 10561 10915 */ 10562 public com.google.protobuf.DescriptorProtos.EnumOptions getOptions() { 10916 @Override 10917 public com.google.protobuf.DescriptorProtos.EnumOptions getOptions() { 10563 10918 return options_; 10564 10919 } … … 10566 10921 * <code>optional .google.protobuf.EnumOptions options = 3;</code> 10567 10922 */ 10568 public com.google.protobuf.DescriptorProtos.EnumOptionsOrBuilder getOptionsOrBuilder() { 10923 @Override 10924 public com.google.protobuf.DescriptorProtos.EnumOptionsOrBuilder getOptionsOrBuilder() { 10569 10925 return options_; 10570 10926 } … … 10576 10932 } 10577 10933 private byte memoizedIsInitialized = -1; 10578 public final boolean isInitialized() { 10934 @Override 10935 public final boolean isInitialized() { 10579 10936 byte isInitialized = memoizedIsInitialized; 10580 10937 if (isInitialized == 1) return true; … … 10597 10954 } 10598 10955 10599 public void writeTo(com.google.protobuf.CodedOutputStream output) 10956 @Override 10957 public void writeTo(com.google.protobuf.CodedOutputStream output) 10600 10958 throws java.io.IOException { 10601 10959 getSerializedSize(); … … 10613 10971 10614 10972 private int memoizedSerializedSize = -1; 10615 public int getSerializedSize() { 10973 @Override 10974 public int getSerializedSize() { 10616 10975 int size = memoizedSerializedSize; 10617 10976 if (size != -1) return size; … … 10696 11055 10697 11056 public static Builder newBuilder() { return Builder.create(); } 10698 public Builder newBuilderForType() { return newBuilder(); } 11057 @Override 11058 public Builder newBuilderForType() { return newBuilder(); } 10699 11059 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.EnumDescriptorProto prototype) { 10700 11060 return newBuilder().mergeFrom(prototype); 10701 11061 } 10702 public Builder toBuilder() { return newBuilder(this); } 11062 @Override 11063 public Builder toBuilder() { return newBuilder(this); } 10703 11064 10704 11065 @java.lang.Override … … 10724 11085 } 10725 11086 10726 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 11087 @Override 11088 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 10727 11089 internalGetFieldAccessorTable() { 10728 11090 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumDescriptorProto_fieldAccessorTable … … 10751 11113 } 10752 11114 10753 public Builder clear() { 11115 @Override 11116 public Builder clear() { 10754 11117 super.clear(); 10755 11118 name_ = ""; … … 10770 11133 } 10771 11134 10772 public Builder clone() { 11135 @Override 11136 public Builder clone() { 10773 11137 return create().mergeFrom(buildPartial()); 10774 11138 } 10775 11139 10776 public com.google.protobuf.Descriptors.Descriptor 11140 @Override 11141 public com.google.protobuf.Descriptors.Descriptor 10777 11142 getDescriptorForType() { 10778 11143 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumDescriptorProto_descriptor; 10779 11144 } 10780 11145 10781 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto getDefaultInstanceForType() { 11146 @Override 11147 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto getDefaultInstanceForType() { 10782 11148 return com.google.protobuf.DescriptorProtos.EnumDescriptorProto.getDefaultInstance(); 10783 11149 } 10784 11150 10785 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto build() { 11151 @Override 11152 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto build() { 10786 11153 com.google.protobuf.DescriptorProtos.EnumDescriptorProto result = buildPartial(); 10787 11154 if (!result.isInitialized()) { … … 10791 11158 } 10792 11159 10793 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto buildPartial() { 11160 @Override 11161 public com.google.protobuf.DescriptorProtos.EnumDescriptorProto buildPartial() { 10794 11162 com.google.protobuf.DescriptorProtos.EnumDescriptorProto result = new com.google.protobuf.DescriptorProtos.EnumDescriptorProto(this); 10795 11163 int from_bitField0_ = bitField0_; … … 10821 11189 } 10822 11190 10823 public Builder mergeFrom(com.google.protobuf.Message other) { 11191 @Override 11192 public Builder mergeFrom(com.google.protobuf.Message other) { 10824 11193 if (other instanceof com.google.protobuf.DescriptorProtos.EnumDescriptorProto) { 10825 11194 return mergeFrom((com.google.protobuf.DescriptorProtos.EnumDescriptorProto)other); … … 10855 11224 value_ = other.value_; 10856 11225 bitField0_ = (bitField0_ & ~0x00000002); 10857 valueBuilder_ = 11226 valueBuilder_ = 10858 11227 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 10859 11228 getValueFieldBuilder() : null; … … 10870 11239 } 10871 11240 10872 public final boolean isInitialized() { 11241 @Override 11242 public final boolean isInitialized() { 10873 11243 for (int i = 0; i < getValueCount(); i++) { 10874 11244 if (!getValue(i).isInitialized()) { 10875 11245 10876 11246 return false; 10877 11247 } … … 10879 11249 if (hasOptions()) { 10880 11250 if (!getOptions().isInitialized()) { 10881 11251 10882 11252 return false; 10883 11253 } … … 10886 11256 } 10887 11257 10888 public Builder mergeFrom( 11258 @Override 11259 public Builder mergeFrom( 10889 11260 com.google.protobuf.CodedInputStream input, 10890 11261 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 10909 11280 * <code>optional string name = 1;</code> 10910 11281 */ 10911 public boolean hasName() { 11282 @Override 11283 public boolean hasName() { 10912 11284 return ((bitField0_ & 0x00000001) == 0x00000001); 10913 11285 } … … 10915 11287 * <code>optional string name = 1;</code> 10916 11288 */ 10917 public java.lang.String getName() { 11289 @Override 11290 public java.lang.String getName() { 10918 11291 java.lang.Object ref = name_; 10919 11292 if (!(ref instanceof java.lang.String)) { … … 10932 11305 * <code>optional string name = 1;</code> 10933 11306 */ 10934 public com.google.protobuf.ByteString 11307 @Override 11308 public com.google.protobuf.ByteString 10935 11309 getNameBytes() { 10936 11310 java.lang.Object ref = name_; 10937 11311 if (ref instanceof String) { 10938 com.google.protobuf.ByteString b = 11312 com.google.protobuf.ByteString b = 10939 11313 com.google.protobuf.ByteString.copyFromUtf8( 10940 11314 (java.lang.String) ref); … … 10996 11370 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 10997 11371 */ 10998 public java.util.List<com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto> getValueList() { 11372 @Override 11373 public java.util.List<com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto> getValueList() { 10999 11374 if (valueBuilder_ == null) { 11000 11375 return java.util.Collections.unmodifiableList(value_); … … 11006 11381 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 11007 11382 */ 11008 public int getValueCount() { 11383 @Override 11384 public int getValueCount() { 11009 11385 if (valueBuilder_ == null) { 11010 11386 return value_.size(); … … 11016 11392 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 11017 11393 */ 11018 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto getValue(int index) { 11394 @Override 11395 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto getValue(int index) { 11019 11396 if (valueBuilder_ == null) { 11020 11397 return value_.get(index); … … 11166 11543 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 11167 11544 */ 11168 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder getValueOrBuilder( 11545 @Override 11546 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder getValueOrBuilder( 11169 11547 int index) { 11170 11548 if (valueBuilder_ == null) { … … 11176 11554 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 11177 11555 */ 11178 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder> 11556 @Override 11557 public java.util.List<? extends com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder> 11179 11558 getValueOrBuilderList() { 11180 11559 if (valueBuilder_ != null) { … … 11202 11581 * <code>repeated .google.protobuf.EnumValueDescriptorProto value = 2;</code> 11203 11582 */ 11204 public java.util.List<com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto.Builder> 11583 public java.util.List<com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto.Builder> 11205 11584 getValueBuilderList() { 11206 11585 return getValueFieldBuilder().getBuilderList(); 11207 11586 } 11208 11587 private com.google.protobuf.RepeatedFieldBuilder< 11209 com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto, com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder> 11588 com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto, com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.EnumValueDescriptorProtoOrBuilder> 11210 11589 getValueFieldBuilder() { 11211 11590 if (valueBuilder_ == null) { … … 11226 11605 * <code>optional .google.protobuf.EnumOptions options = 3;</code> 11227 11606 */ 11228 public boolean hasOptions() { 11607 @Override 11608 public boolean hasOptions() { 11229 11609 return ((bitField0_ & 0x00000004) == 0x00000004); 11230 11610 } … … 11232 11612 * <code>optional .google.protobuf.EnumOptions options = 3;</code> 11233 11613 */ 11234 public com.google.protobuf.DescriptorProtos.EnumOptions getOptions() { 11614 @Override 11615 public com.google.protobuf.DescriptorProtos.EnumOptions getOptions() { 11235 11616 if (optionsBuilder_ == null) { 11236 11617 return options_; … … 11312 11693 * <code>optional .google.protobuf.EnumOptions options = 3;</code> 11313 11694 */ 11314 public com.google.protobuf.DescriptorProtos.EnumOptionsOrBuilder getOptionsOrBuilder() { 11695 @Override 11696 public com.google.protobuf.DescriptorProtos.EnumOptionsOrBuilder getOptionsOrBuilder() { 11315 11697 if (optionsBuilder_ != null) { 11316 11698 return optionsBuilder_.getMessageOrBuilder(); … … 11323 11705 */ 11324 11706 private com.google.protobuf.SingleFieldBuilder< 11325 com.google.protobuf.DescriptorProtos.EnumOptions, com.google.protobuf.DescriptorProtos.EnumOptions.Builder, com.google.protobuf.DescriptorProtos.EnumOptionsOrBuilder> 11707 com.google.protobuf.DescriptorProtos.EnumOptions, com.google.protobuf.DescriptorProtos.EnumOptions.Builder, com.google.protobuf.DescriptorProtos.EnumOptionsOrBuilder> 11326 11708 getOptionsFieldBuilder() { 11327 11709 if (optionsBuilder_ == null) { … … 11409 11791 } 11410 11792 11411 public EnumValueDescriptorProto getDefaultInstanceForType() { 11793 @Override 11794 public EnumValueDescriptorProto getDefaultInstanceForType() { 11412 11795 return defaultInstance; 11413 11796 } … … 11483 11866 } 11484 11867 11485 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 11868 @Override 11869 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 11486 11870 internalGetFieldAccessorTable() { 11487 11871 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumValueDescriptorProto_fieldAccessorTable … … 11492 11876 public static com.google.protobuf.Parser<EnumValueDescriptorProto> PARSER = 11493 11877 new com.google.protobuf.AbstractParser<EnumValueDescriptorProto>() { 11494 public EnumValueDescriptorProto parsePartialFrom( 11878 @Override 11879 public EnumValueDescriptorProto parsePartialFrom( 11495 11880 com.google.protobuf.CodedInputStream input, 11496 11881 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 11511 11896 * <code>optional string name = 1;</code> 11512 11897 */ 11513 public boolean hasName() { 11898 @Override 11899 public boolean hasName() { 11514 11900 return ((bitField0_ & 0x00000001) == 0x00000001); 11515 11901 } … … 11517 11903 * <code>optional string name = 1;</code> 11518 11904 */ 11519 public java.lang.String getName() { 11905 @Override 11906 public java.lang.String getName() { 11520 11907 java.lang.Object ref = name_; 11521 11908 if (ref instanceof java.lang.String) { 11522 11909 return (java.lang.String) ref; 11523 11910 } else { 11524 com.google.protobuf.ByteString bs = 11911 com.google.protobuf.ByteString bs = 11525 11912 (com.google.protobuf.ByteString) ref; 11526 11913 java.lang.String s = bs.toStringUtf8(); … … 11534 11921 * <code>optional string name = 1;</code> 11535 11922 */ 11536 public com.google.protobuf.ByteString 11923 @Override 11924 public com.google.protobuf.ByteString 11537 11925 getNameBytes() { 11538 11926 java.lang.Object ref = name_; 11539 11927 if (ref instanceof java.lang.String) { 11540 com.google.protobuf.ByteString b = 11928 com.google.protobuf.ByteString b = 11541 11929 com.google.protobuf.ByteString.copyFromUtf8( 11542 11930 (java.lang.String) ref); … … 11553 11941 * <code>optional int32 number = 2;</code> 11554 11942 */ 11555 public boolean hasNumber() { 11943 @Override 11944 public boolean hasNumber() { 11556 11945 return ((bitField0_ & 0x00000002) == 0x00000002); 11557 11946 } … … 11559 11948 * <code>optional int32 number = 2;</code> 11560 11949 */ 11561 public int getNumber() { 11950 @Override 11951 public int getNumber() { 11562 11952 return number_; 11563 11953 } … … 11568 11958 * <code>optional .google.protobuf.EnumValueOptions options = 3;</code> 11569 11959 */ 11570 public boolean hasOptions() { 11960 @Override 11961 public boolean hasOptions() { 11571 11962 return ((bitField0_ & 0x00000004) == 0x00000004); 11572 11963 } … … 11574 11965 * <code>optional .google.protobuf.EnumValueOptions options = 3;</code> 11575 11966 */ 11576 public com.google.protobuf.DescriptorProtos.EnumValueOptions getOptions() { 11967 @Override 11968 public com.google.protobuf.DescriptorProtos.EnumValueOptions getOptions() { 11577 11969 return options_; 11578 11970 } … … 11580 11972 * <code>optional .google.protobuf.EnumValueOptions options = 3;</code> 11581 11973 */ 11582 public com.google.protobuf.DescriptorProtos.EnumValueOptionsOrBuilder getOptionsOrBuilder() { 11974 @Override 11975 public com.google.protobuf.DescriptorProtos.EnumValueOptionsOrBuilder getOptionsOrBuilder() { 11583 11976 return options_; 11584 11977 } … … 11590 11983 } 11591 11984 private byte memoizedIsInitialized = -1; 11592 public final boolean isInitialized() { 11985 @Override 11986 public final boolean isInitialized() { 11593 11987 byte isInitialized = memoizedIsInitialized; 11594 11988 if (isInitialized == 1) return true; … … 11605 11999 } 11606 12000 11607 public void writeTo(com.google.protobuf.CodedOutputStream output) 12001 @Override 12002 public void writeTo(com.google.protobuf.CodedOutputStream output) 11608 12003 throws java.io.IOException { 11609 12004 getSerializedSize(); … … 11621 12016 11622 12017 private int memoizedSerializedSize = -1; 11623 public int getSerializedSize() { 12018 @Override 12019 public int getSerializedSize() { 11624 12020 int size = memoizedSerializedSize; 11625 12021 if (size != -1) return size; … … 11704 12100 11705 12101 public static Builder newBuilder() { return Builder.create(); } 11706 public Builder newBuilderForType() { return newBuilder(); } 12102 @Override 12103 public Builder newBuilderForType() { return newBuilder(); } 11707 12104 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto prototype) { 11708 12105 return newBuilder().mergeFrom(prototype); 11709 12106 } 11710 public Builder toBuilder() { return newBuilder(this); } 12107 @Override 12108 public Builder toBuilder() { return newBuilder(this); } 11711 12109 11712 12110 @java.lang.Override … … 11732 12130 } 11733 12131 11734 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 12132 @Override 12133 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 11735 12134 internalGetFieldAccessorTable() { 11736 12135 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumValueDescriptorProto_fieldAccessorTable … … 11758 12157 } 11759 12158 11760 public Builder clear() { 12159 @Override 12160 public Builder clear() { 11761 12161 super.clear(); 11762 12162 name_ = ""; … … 11773 12173 } 11774 12174 11775 public Builder clone() { 12175 @Override 12176 public Builder clone() { 11776 12177 return create().mergeFrom(buildPartial()); 11777 12178 } 11778 12179 11779 public com.google.protobuf.Descriptors.Descriptor 12180 @Override 12181 public com.google.protobuf.Descriptors.Descriptor 11780 12182 getDescriptorForType() { 11781 12183 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumValueDescriptorProto_descriptor; 11782 12184 } 11783 12185 11784 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto getDefaultInstanceForType() { 12186 @Override 12187 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto getDefaultInstanceForType() { 11785 12188 return com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto.getDefaultInstance(); 11786 12189 } 11787 12190 11788 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto build() { 12191 @Override 12192 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto build() { 11789 12193 com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto result = buildPartial(); 11790 12194 if (!result.isInitialized()) { … … 11794 12198 } 11795 12199 11796 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto buildPartial() { 12200 @Override 12201 public com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto buildPartial() { 11797 12202 com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto result = new com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto(this); 11798 12203 int from_bitField0_ = bitField0_; … … 11819 12224 } 11820 12225 11821 public Builder mergeFrom(com.google.protobuf.Message other) { 12226 @Override 12227 public Builder mergeFrom(com.google.protobuf.Message other) { 11822 12228 if (other instanceof com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto) { 11823 12229 return mergeFrom((com.google.protobuf.DescriptorProtos.EnumValueDescriptorProto)other); … … 11845 12251 } 11846 12252 11847 public final boolean isInitialized() { 12253 @Override 12254 public final boolean isInitialized() { 11848 12255 if (hasOptions()) { 11849 12256 if (!getOptions().isInitialized()) { 11850 12257 11851 12258 return false; 11852 12259 } … … 11855 12262 } 11856 12263 11857 public Builder mergeFrom( 12264 @Override 12265 public Builder mergeFrom( 11858 12266 com.google.protobuf.CodedInputStream input, 11859 12267 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 11878 12286 * <code>optional string name = 1;</code> 11879 12287 */ 11880 public boolean hasName() { 12288 @Override 12289 public boolean hasName() { 11881 12290 return ((bitField0_ & 0x00000001) == 0x00000001); 11882 12291 } … … 11884 12293 * <code>optional string name = 1;</code> 11885 12294 */ 11886 public java.lang.String getName() { 12295 @Override 12296 public java.lang.String getName() { 11887 12297 java.lang.Object ref = name_; 11888 12298 if (!(ref instanceof java.lang.String)) { … … 11901 12311 * <code>optional string name = 1;</code> 11902 12312 */ 11903 public com.google.protobuf.ByteString 12313 @Override 12314 public com.google.protobuf.ByteString 11904 12315 getNameBytes() { 11905 12316 java.lang.Object ref = name_; 11906 12317 if (ref instanceof String) { 11907 com.google.protobuf.ByteString b = 12318 com.google.protobuf.ByteString b = 11908 12319 com.google.protobuf.ByteString.copyFromUtf8( 11909 12320 (java.lang.String) ref); … … 11954 12365 * <code>optional int32 number = 2;</code> 11955 12366 */ 11956 public boolean hasNumber() { 12367 @Override 12368 public boolean hasNumber() { 11957 12369 return ((bitField0_ & 0x00000002) == 0x00000002); 11958 12370 } … … 11960 12372 * <code>optional int32 number = 2;</code> 11961 12373 */ 11962 public int getNumber() { 12374 @Override 12375 public int getNumber() { 11963 12376 return number_; 11964 12377 } … … 11988 12401 * <code>optional .google.protobuf.EnumValueOptions options = 3;</code> 11989 12402 */ 11990 public boolean hasOptions() { 12403 @Override 12404 public boolean hasOptions() { 11991 12405 return ((bitField0_ & 0x00000004) == 0x00000004); 11992 12406 } … … 11994 12408 * <code>optional .google.protobuf.EnumValueOptions options = 3;</code> 11995 12409 */ 11996 public com.google.protobuf.DescriptorProtos.EnumValueOptions getOptions() { 12410 @Override 12411 public com.google.protobuf.DescriptorProtos.EnumValueOptions getOptions() { 11997 12412 if (optionsBuilder_ == null) { 11998 12413 return options_; … … 12074 12489 * <code>optional .google.protobuf.EnumValueOptions options = 3;</code> 12075 12490 */ 12076 public com.google.protobuf.DescriptorProtos.EnumValueOptionsOrBuilder getOptionsOrBuilder() { 12491 @Override 12492 public com.google.protobuf.DescriptorProtos.EnumValueOptionsOrBuilder getOptionsOrBuilder() { 12077 12493 if (optionsBuilder_ != null) { 12078 12494 return optionsBuilder_.getMessageOrBuilder(); … … 12085 12501 */ 12086 12502 private com.google.protobuf.SingleFieldBuilder< 12087 com.google.protobuf.DescriptorProtos.EnumValueOptions, com.google.protobuf.DescriptorProtos.EnumValueOptions.Builder, com.google.protobuf.DescriptorProtos.EnumValueOptionsOrBuilder> 12503 com.google.protobuf.DescriptorProtos.EnumValueOptions, com.google.protobuf.DescriptorProtos.EnumValueOptions.Builder, com.google.protobuf.DescriptorProtos.EnumValueOptionsOrBuilder> 12088 12504 getOptionsFieldBuilder() { 12089 12505 if (optionsBuilder_ == null) { … … 12129 12545 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12130 12546 */ 12131 java.util.List<com.google.protobuf.DescriptorProtos.MethodDescriptorProto> 12547 java.util.List<com.google.protobuf.DescriptorProtos.MethodDescriptorProto> 12132 12548 getMethodList(); 12133 12549 /** … … 12142 12558 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12143 12559 */ 12144 java.util.List<? extends com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder> 12560 java.util.List<? extends com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder> 12145 12561 getMethodOrBuilderList(); 12146 12562 /** … … 12186 12602 } 12187 12603 12188 public ServiceDescriptorProto getDefaultInstanceForType() { 12604 @Override 12605 public ServiceDescriptorProto getDefaultInstanceForType() { 12189 12606 return defaultInstance; 12190 12607 } … … 12266 12683 } 12267 12684 12268 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 12685 @Override 12686 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 12269 12687 internalGetFieldAccessorTable() { 12270 12688 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_ServiceDescriptorProto_fieldAccessorTable … … 12275 12693 public static com.google.protobuf.Parser<ServiceDescriptorProto> PARSER = 12276 12694 new com.google.protobuf.AbstractParser<ServiceDescriptorProto>() { 12277 public ServiceDescriptorProto parsePartialFrom( 12695 @Override 12696 public ServiceDescriptorProto parsePartialFrom( 12278 12697 com.google.protobuf.CodedInputStream input, 12279 12698 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 12294 12713 * <code>optional string name = 1;</code> 12295 12714 */ 12296 public boolean hasName() { 12715 @Override 12716 public boolean hasName() { 12297 12717 return ((bitField0_ & 0x00000001) == 0x00000001); 12298 12718 } … … 12300 12720 * <code>optional string name = 1;</code> 12301 12721 */ 12302 public java.lang.String getName() { 12722 @Override 12723 public java.lang.String getName() { 12303 12724 java.lang.Object ref = name_; 12304 12725 if (ref instanceof java.lang.String) { 12305 12726 return (java.lang.String) ref; 12306 12727 } else { 12307 com.google.protobuf.ByteString bs = 12728 com.google.protobuf.ByteString bs = 12308 12729 (com.google.protobuf.ByteString) ref; 12309 12730 java.lang.String s = bs.toStringUtf8(); … … 12317 12738 * <code>optional string name = 1;</code> 12318 12739 */ 12319 public com.google.protobuf.ByteString 12740 @Override 12741 public com.google.protobuf.ByteString 12320 12742 getNameBytes() { 12321 12743 java.lang.Object ref = name_; 12322 12744 if (ref instanceof java.lang.String) { 12323 com.google.protobuf.ByteString b = 12745 com.google.protobuf.ByteString b = 12324 12746 com.google.protobuf.ByteString.copyFromUtf8( 12325 12747 (java.lang.String) ref); … … 12336 12758 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12337 12759 */ 12338 public java.util.List<com.google.protobuf.DescriptorProtos.MethodDescriptorProto> getMethodList() { 12760 @Override 12761 public java.util.List<com.google.protobuf.DescriptorProtos.MethodDescriptorProto> getMethodList() { 12339 12762 return method_; 12340 12763 } … … 12342 12765 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12343 12766 */ 12344 public java.util.List<? extends com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder> 12767 @Override 12768 public java.util.List<? extends com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder> 12345 12769 getMethodOrBuilderList() { 12346 12770 return method_; … … 12349 12773 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12350 12774 */ 12351 public int getMethodCount() { 12775 @Override 12776 public int getMethodCount() { 12352 12777 return method_.size(); 12353 12778 } … … 12355 12780 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12356 12781 */ 12357 public com.google.protobuf.DescriptorProtos.MethodDescriptorProto getMethod(int index) { 12782 @Override 12783 public com.google.protobuf.DescriptorProtos.MethodDescriptorProto getMethod(int index) { 12358 12784 return method_.get(index); 12359 12785 } … … 12361 12787 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12362 12788 */ 12363 public com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder getMethodOrBuilder( 12789 @Override 12790 public com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder getMethodOrBuilder( 12364 12791 int index) { 12365 12792 return method_.get(index); … … 12371 12798 * <code>optional .google.protobuf.ServiceOptions options = 3;</code> 12372 12799 */ 12373 public boolean hasOptions() { 12800 @Override 12801 public boolean hasOptions() { 12374 12802 return ((bitField0_ & 0x00000002) == 0x00000002); 12375 12803 } … … 12377 12805 * <code>optional .google.protobuf.ServiceOptions options = 3;</code> 12378 12806 */ 12379 public com.google.protobuf.DescriptorProtos.ServiceOptions getOptions() { 12807 @Override 12808 public com.google.protobuf.DescriptorProtos.ServiceOptions getOptions() { 12380 12809 return options_; 12381 12810 } … … 12383 12812 * <code>optional .google.protobuf.ServiceOptions options = 3;</code> 12384 12813 */ 12385 public com.google.protobuf.DescriptorProtos.ServiceOptionsOrBuilder getOptionsOrBuilder() { 12814 @Override 12815 public com.google.protobuf.DescriptorProtos.ServiceOptionsOrBuilder getOptionsOrBuilder() { 12386 12816 return options_; 12387 12817 } … … 12393 12823 } 12394 12824 private byte memoizedIsInitialized = -1; 12395 public final boolean isInitialized() { 12825 @Override 12826 public final boolean isInitialized() { 12396 12827 byte isInitialized = memoizedIsInitialized; 12397 12828 if (isInitialized == 1) return true; … … 12414 12845 } 12415 12846 12416 public void writeTo(com.google.protobuf.CodedOutputStream output) 12847 @Override 12848 public void writeTo(com.google.protobuf.CodedOutputStream output) 12417 12849 throws java.io.IOException { 12418 12850 getSerializedSize(); … … 12430 12862 12431 12863 private int memoizedSerializedSize = -1; 12432 public int getSerializedSize() { 12864 @Override 12865 public int getSerializedSize() { 12433 12866 int size = memoizedSerializedSize; 12434 12867 if (size != -1) return size; … … 12513 12946 12514 12947 public static Builder newBuilder() { return Builder.create(); } 12515 public Builder newBuilderForType() { return newBuilder(); } 12948 @Override 12949 public Builder newBuilderForType() { return newBuilder(); } 12516 12950 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.ServiceDescriptorProto prototype) { 12517 12951 return newBuilder().mergeFrom(prototype); 12518 12952 } 12519 public Builder toBuilder() { return newBuilder(this); } 12953 @Override 12954 public Builder toBuilder() { return newBuilder(this); } 12520 12955 12521 12956 @java.lang.Override … … 12541 12976 } 12542 12977 12543 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 12978 @Override 12979 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 12544 12980 internalGetFieldAccessorTable() { 12545 12981 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_ServiceDescriptorProto_fieldAccessorTable … … 12568 13004 } 12569 13005 12570 public Builder clear() { 13006 @Override 13007 public Builder clear() { 12571 13008 super.clear(); 12572 13009 name_ = ""; … … 12587 13024 } 12588 13025 12589 public Builder clone() { 13026 @Override 13027 public Builder clone() { 12590 13028 return create().mergeFrom(buildPartial()); 12591 13029 } 12592 13030 12593 public com.google.protobuf.Descriptors.Descriptor 13031 @Override 13032 public com.google.protobuf.Descriptors.Descriptor 12594 13033 getDescriptorForType() { 12595 13034 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_ServiceDescriptorProto_descriptor; 12596 13035 } 12597 13036 12598 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProto getDefaultInstanceForType() { 13037 @Override 13038 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProto getDefaultInstanceForType() { 12599 13039 return com.google.protobuf.DescriptorProtos.ServiceDescriptorProto.getDefaultInstance(); 12600 13040 } 12601 13041 12602 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProto build() { 13042 @Override 13043 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProto build() { 12603 13044 com.google.protobuf.DescriptorProtos.ServiceDescriptorProto result = buildPartial(); 12604 13045 if (!result.isInitialized()) { … … 12608 13049 } 12609 13050 12610 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProto buildPartial() { 13051 @Override 13052 public com.google.protobuf.DescriptorProtos.ServiceDescriptorProto buildPartial() { 12611 13053 com.google.protobuf.DescriptorProtos.ServiceDescriptorProto result = new com.google.protobuf.DescriptorProtos.ServiceDescriptorProto(this); 12612 13054 int from_bitField0_ = bitField0_; … … 12638 13080 } 12639 13081 12640 public Builder mergeFrom(com.google.protobuf.Message other) { 13082 @Override 13083 public Builder mergeFrom(com.google.protobuf.Message other) { 12641 13084 if (other instanceof com.google.protobuf.DescriptorProtos.ServiceDescriptorProto) { 12642 13085 return mergeFrom((com.google.protobuf.DescriptorProtos.ServiceDescriptorProto)other); … … 12672 13115 method_ = other.method_; 12673 13116 bitField0_ = (bitField0_ & ~0x00000002); 12674 methodBuilder_ = 13117 methodBuilder_ = 12675 13118 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 12676 13119 getMethodFieldBuilder() : null; … … 12687 13130 } 12688 13131 12689 public final boolean isInitialized() { 13132 @Override 13133 public final boolean isInitialized() { 12690 13134 for (int i = 0; i < getMethodCount(); i++) { 12691 13135 if (!getMethod(i).isInitialized()) { 12692 13136 12693 13137 return false; 12694 13138 } … … 12696 13140 if (hasOptions()) { 12697 13141 if (!getOptions().isInitialized()) { 12698 13142 12699 13143 return false; 12700 13144 } … … 12703 13147 } 12704 13148 12705 public Builder mergeFrom( 13149 @Override 13150 public Builder mergeFrom( 12706 13151 com.google.protobuf.CodedInputStream input, 12707 13152 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 12726 13171 * <code>optional string name = 1;</code> 12727 13172 */ 12728 public boolean hasName() { 13173 @Override 13174 public boolean hasName() { 12729 13175 return ((bitField0_ & 0x00000001) == 0x00000001); 12730 13176 } … … 12732 13178 * <code>optional string name = 1;</code> 12733 13179 */ 12734 public java.lang.String getName() { 13180 @Override 13181 public java.lang.String getName() { 12735 13182 java.lang.Object ref = name_; 12736 13183 if (!(ref instanceof java.lang.String)) { … … 12749 13196 * <code>optional string name = 1;</code> 12750 13197 */ 12751 public com.google.protobuf.ByteString 13198 @Override 13199 public com.google.protobuf.ByteString 12752 13200 getNameBytes() { 12753 13201 java.lang.Object ref = name_; 12754 13202 if (ref instanceof String) { 12755 com.google.protobuf.ByteString b = 13203 com.google.protobuf.ByteString b = 12756 13204 com.google.protobuf.ByteString.copyFromUtf8( 12757 13205 (java.lang.String) ref); … … 12813 13261 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12814 13262 */ 12815 public java.util.List<com.google.protobuf.DescriptorProtos.MethodDescriptorProto> getMethodList() { 13263 @Override 13264 public java.util.List<com.google.protobuf.DescriptorProtos.MethodDescriptorProto> getMethodList() { 12816 13265 if (methodBuilder_ == null) { 12817 13266 return java.util.Collections.unmodifiableList(method_); … … 12823 13272 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12824 13273 */ 12825 public int getMethodCount() { 13274 @Override 13275 public int getMethodCount() { 12826 13276 if (methodBuilder_ == null) { 12827 13277 return method_.size(); … … 12833 13283 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12834 13284 */ 12835 public com.google.protobuf.DescriptorProtos.MethodDescriptorProto getMethod(int index) { 13285 @Override 13286 public com.google.protobuf.DescriptorProtos.MethodDescriptorProto getMethod(int index) { 12836 13287 if (methodBuilder_ == null) { 12837 13288 return method_.get(index); … … 12983 13434 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12984 13435 */ 12985 public com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder getMethodOrBuilder( 13436 @Override 13437 public com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder getMethodOrBuilder( 12986 13438 int index) { 12987 13439 if (methodBuilder_ == null) { … … 12993 13445 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 12994 13446 */ 12995 public java.util.List<? extends com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder> 13447 @Override 13448 public java.util.List<? extends com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder> 12996 13449 getMethodOrBuilderList() { 12997 13450 if (methodBuilder_ != null) { … … 13019 13472 * <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code> 13020 13473 */ 13021 public java.util.List<com.google.protobuf.DescriptorProtos.MethodDescriptorProto.Builder> 13474 public java.util.List<com.google.protobuf.DescriptorProtos.MethodDescriptorProto.Builder> 13022 13475 getMethodBuilderList() { 13023 13476 return getMethodFieldBuilder().getBuilderList(); 13024 13477 } 13025 13478 private com.google.protobuf.RepeatedFieldBuilder< 13026 com.google.protobuf.DescriptorProtos.MethodDescriptorProto, com.google.protobuf.DescriptorProtos.MethodDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder> 13479 com.google.protobuf.DescriptorProtos.MethodDescriptorProto, com.google.protobuf.DescriptorProtos.MethodDescriptorProto.Builder, com.google.protobuf.DescriptorProtos.MethodDescriptorProtoOrBuilder> 13027 13480 getMethodFieldBuilder() { 13028 13481 if (methodBuilder_ == null) { … … 13043 13496 * <code>optional .google.protobuf.ServiceOptions options = 3;</code> 13044 13497 */ 13045 public boolean hasOptions() { 13498 @Override 13499 public boolean hasOptions() { 13046 13500 return ((bitField0_ & 0x00000004) == 0x00000004); 13047 13501 } … … 13049 13503 * <code>optional .google.protobuf.ServiceOptions options = 3;</code> 13050 13504 */ 13051 public com.google.protobuf.DescriptorProtos.ServiceOptions getOptions() { 13505 @Override 13506 public com.google.protobuf.DescriptorProtos.ServiceOptions getOptions() { 13052 13507 if (optionsBuilder_ == null) { 13053 13508 return options_; … … 13129 13584 * <code>optional .google.protobuf.ServiceOptions options = 3;</code> 13130 13585 */ 13131 public com.google.protobuf.DescriptorProtos.ServiceOptionsOrBuilder getOptionsOrBuilder() { 13586 @Override 13587 public com.google.protobuf.DescriptorProtos.ServiceOptionsOrBuilder getOptionsOrBuilder() { 13132 13588 if (optionsBuilder_ != null) { 13133 13589 return optionsBuilder_.getMessageOrBuilder(); … … 13140 13596 */ 13141 13597 private com.google.protobuf.SingleFieldBuilder< 13142 com.google.protobuf.DescriptorProtos.ServiceOptions, com.google.protobuf.DescriptorProtos.ServiceOptions.Builder, com.google.protobuf.DescriptorProtos.ServiceOptionsOrBuilder> 13598 com.google.protobuf.DescriptorProtos.ServiceOptions, com.google.protobuf.DescriptorProtos.ServiceOptions.Builder, com.google.protobuf.DescriptorProtos.ServiceOptionsOrBuilder> 13143 13599 getOptionsFieldBuilder() { 13144 13600 if (optionsBuilder_ == null) { … … 13260 13716 } 13261 13717 13262 public MethodDescriptorProto getDefaultInstanceForType() { 13718 @Override 13719 public MethodDescriptorProto getDefaultInstanceForType() { 13263 13720 return defaultInstance; 13264 13721 } … … 13341 13798 } 13342 13799 13343 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 13800 @Override 13801 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 13344 13802 internalGetFieldAccessorTable() { 13345 13803 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_MethodDescriptorProto_fieldAccessorTable … … 13350 13808 public static com.google.protobuf.Parser<MethodDescriptorProto> PARSER = 13351 13809 new com.google.protobuf.AbstractParser<MethodDescriptorProto>() { 13352 public MethodDescriptorProto parsePartialFrom( 13810 @Override 13811 public MethodDescriptorProto parsePartialFrom( 13353 13812 com.google.protobuf.CodedInputStream input, 13354 13813 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 13369 13828 * <code>optional string name = 1;</code> 13370 13829 */ 13371 public boolean hasName() { 13830 @Override 13831 public boolean hasName() { 13372 13832 return ((bitField0_ & 0x00000001) == 0x00000001); 13373 13833 } … … 13375 13835 * <code>optional string name = 1;</code> 13376 13836 */ 13377 public java.lang.String getName() { 13837 @Override 13838 public java.lang.String getName() { 13378 13839 java.lang.Object ref = name_; 13379 13840 if (ref instanceof java.lang.String) { 13380 13841 return (java.lang.String) ref; 13381 13842 } else { 13382 com.google.protobuf.ByteString bs = 13843 com.google.protobuf.ByteString bs = 13383 13844 (com.google.protobuf.ByteString) ref; 13384 13845 java.lang.String s = bs.toStringUtf8(); … … 13392 13853 * <code>optional string name = 1;</code> 13393 13854 */ 13394 public com.google.protobuf.ByteString 13855 @Override 13856 public com.google.protobuf.ByteString 13395 13857 getNameBytes() { 13396 13858 java.lang.Object ref = name_; 13397 13859 if (ref instanceof java.lang.String) { 13398 com.google.protobuf.ByteString b = 13860 com.google.protobuf.ByteString b = 13399 13861 com.google.protobuf.ByteString.copyFromUtf8( 13400 13862 (java.lang.String) ref); … … 13416 13878 * </pre> 13417 13879 */ 13418 public boolean hasInputType() { 13880 @Override 13881 public boolean hasInputType() { 13419 13882 return ((bitField0_ & 0x00000002) == 0x00000002); 13420 13883 } … … 13427 13890 * </pre> 13428 13891 */ 13429 public java.lang.String getInputType() { 13892 @Override 13893 public java.lang.String getInputType() { 13430 13894 java.lang.Object ref = inputType_; 13431 13895 if (ref instanceof java.lang.String) { 13432 13896 return (java.lang.String) ref; 13433 13897 } else { 13434 com.google.protobuf.ByteString bs = 13898 com.google.protobuf.ByteString bs = 13435 13899 (com.google.protobuf.ByteString) ref; 13436 13900 java.lang.String s = bs.toStringUtf8(); … … 13449 13913 * </pre> 13450 13914 */ 13451 public com.google.protobuf.ByteString 13915 @Override 13916 public com.google.protobuf.ByteString 13452 13917 getInputTypeBytes() { 13453 13918 java.lang.Object ref = inputType_; 13454 13919 if (ref instanceof java.lang.String) { 13455 com.google.protobuf.ByteString b = 13920 com.google.protobuf.ByteString b = 13456 13921 com.google.protobuf.ByteString.copyFromUtf8( 13457 13922 (java.lang.String) ref); … … 13468 13933 * <code>optional string output_type = 3;</code> 13469 13934 */ 13470 public boolean hasOutputType() { 13935 @Override 13936 public boolean hasOutputType() { 13471 13937 return ((bitField0_ & 0x00000004) == 0x00000004); 13472 13938 } … … 13474 13940 * <code>optional string output_type = 3;</code> 13475 13941 */ 13476 public java.lang.String getOutputType() { 13942 @Override 13943 public java.lang.String getOutputType() { 13477 13944 java.lang.Object ref = outputType_; 13478 13945 if (ref instanceof java.lang.String) { 13479 13946 return (java.lang.String) ref; 13480 13947 } else { 13481 com.google.protobuf.ByteString bs = 13948 com.google.protobuf.ByteString bs = 13482 13949 (com.google.protobuf.ByteString) ref; 13483 13950 java.lang.String s = bs.toStringUtf8(); … … 13491 13958 * <code>optional string output_type = 3;</code> 13492 13959 */ 13493 public com.google.protobuf.ByteString 13960 @Override 13961 public com.google.protobuf.ByteString 13494 13962 getOutputTypeBytes() { 13495 13963 java.lang.Object ref = outputType_; 13496 13964 if (ref instanceof java.lang.String) { 13497 com.google.protobuf.ByteString b = 13965 com.google.protobuf.ByteString b = 13498 13966 com.google.protobuf.ByteString.copyFromUtf8( 13499 13967 (java.lang.String) ref); … … 13510 13978 * <code>optional .google.protobuf.MethodOptions options = 4;</code> 13511 13979 */ 13512 public boolean hasOptions() { 13980 @Override 13981 public boolean hasOptions() { 13513 13982 return ((bitField0_ & 0x00000008) == 0x00000008); 13514 13983 } … … 13516 13985 * <code>optional .google.protobuf.MethodOptions options = 4;</code> 13517 13986 */ 13518 public com.google.protobuf.DescriptorProtos.MethodOptions getOptions() { 13987 @Override 13988 public com.google.protobuf.DescriptorProtos.MethodOptions getOptions() { 13519 13989 return options_; 13520 13990 } … … 13522 13992 * <code>optional .google.protobuf.MethodOptions options = 4;</code> 13523 13993 */ 13524 public com.google.protobuf.DescriptorProtos.MethodOptionsOrBuilder getOptionsOrBuilder() { 13994 @Override 13995 public com.google.protobuf.DescriptorProtos.MethodOptionsOrBuilder getOptionsOrBuilder() { 13525 13996 return options_; 13526 13997 } … … 13533 14004 } 13534 14005 private byte memoizedIsInitialized = -1; 13535 public final boolean isInitialized() { 14006 @Override 14007 public final boolean isInitialized() { 13536 14008 byte isInitialized = memoizedIsInitialized; 13537 14009 if (isInitialized == 1) return true; … … 13548 14020 } 13549 14021 13550 public void writeTo(com.google.protobuf.CodedOutputStream output) 14022 @Override 14023 public void writeTo(com.google.protobuf.CodedOutputStream output) 13551 14024 throws java.io.IOException { 13552 14025 getSerializedSize(); … … 13567 14040 13568 14041 private int memoizedSerializedSize = -1; 13569 public int getSerializedSize() { 14042 @Override 14043 public int getSerializedSize() { 13570 14044 int size = memoizedSerializedSize; 13571 14045 if (size != -1) return size; … … 13654 14128 13655 14129 public static Builder newBuilder() { return Builder.create(); } 13656 public Builder newBuilderForType() { return newBuilder(); } 14130 @Override 14131 public Builder newBuilderForType() { return newBuilder(); } 13657 14132 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.MethodDescriptorProto prototype) { 13658 14133 return newBuilder().mergeFrom(prototype); 13659 14134 } 13660 public Builder toBuilder() { return newBuilder(this); } 14135 @Override 14136 public Builder toBuilder() { return newBuilder(this); } 13661 14137 13662 14138 @java.lang.Override … … 13682 14158 } 13683 14159 13684 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 14160 @Override 14161 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 13685 14162 internalGetFieldAccessorTable() { 13686 14163 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_MethodDescriptorProto_fieldAccessorTable … … 13708 14185 } 13709 14186 13710 public Builder clear() { 14187 @Override 14188 public Builder clear() { 13711 14189 super.clear(); 13712 14190 name_ = ""; … … 13725 14203 } 13726 14204 13727 public Builder clone() { 14205 @Override 14206 public Builder clone() { 13728 14207 return create().mergeFrom(buildPartial()); 13729 14208 } 13730 14209 13731 public com.google.protobuf.Descriptors.Descriptor 14210 @Override 14211 public com.google.protobuf.Descriptors.Descriptor 13732 14212 getDescriptorForType() { 13733 14213 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_MethodDescriptorProto_descriptor; 13734 14214 } 13735 14215 13736 public com.google.protobuf.DescriptorProtos.MethodDescriptorProto getDefaultInstanceForType() { 14216 @Override 14217 public com.google.protobuf.DescriptorProtos.MethodDescriptorProto getDefaultInstanceForType() { 13737 14218 return com.google.protobuf.DescriptorProtos.MethodDescriptorProto.getDefaultInstance(); 13738 14219 } 13739 14220 13740 public com.google.protobuf.DescriptorProtos.MethodDescriptorProto build() { 14221 @Override 14222 public com.google.protobuf.DescriptorProtos.MethodDescriptorProto build() { 13741 14223 com.google.protobuf.DescriptorProtos.MethodDescriptorProto result = buildPartial(); 13742 14224 if (!result.isInitialized()) { … … 13746 14228 } 13747 14229 13748 public com.google.protobuf.DescriptorProtos.MethodDescriptorProto buildPartial() { 14230 @Override 14231 public com.google.protobuf.DescriptorProtos.MethodDescriptorProto buildPartial() { 13749 14232 com.google.protobuf.DescriptorProtos.MethodDescriptorProto result = new com.google.protobuf.DescriptorProtos.MethodDescriptorProto(this); 13750 14233 int from_bitField0_ = bitField0_; … … 13775 14258 } 13776 14259 13777 public Builder mergeFrom(com.google.protobuf.Message other) { 14260 @Override 14261 public Builder mergeFrom(com.google.protobuf.Message other) { 13778 14262 if (other instanceof com.google.protobuf.DescriptorProtos.MethodDescriptorProto) { 13779 14263 return mergeFrom((com.google.protobuf.DescriptorProtos.MethodDescriptorProto)other); … … 13808 14292 } 13809 14293 13810 public final boolean isInitialized() { 14294 @Override 14295 public final boolean isInitialized() { 13811 14296 if (hasOptions()) { 13812 14297 if (!getOptions().isInitialized()) { 13813 14298 13814 14299 return false; 13815 14300 } … … 13818 14303 } 13819 14304 13820 public Builder mergeFrom( 14305 @Override 14306 public Builder mergeFrom( 13821 14307 com.google.protobuf.CodedInputStream input, 13822 14308 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 13841 14327 * <code>optional string name = 1;</code> 13842 14328 */ 13843 public boolean hasName() { 14329 @Override 14330 public boolean hasName() { 13844 14331 return ((bitField0_ & 0x00000001) == 0x00000001); 13845 14332 } … … 13847 14334 * <code>optional string name = 1;</code> 13848 14335 */ 13849 public java.lang.String getName() { 14336 @Override 14337 public java.lang.String getName() { 13850 14338 java.lang.Object ref = name_; 13851 14339 if (!(ref instanceof java.lang.String)) { … … 13864 14352 * <code>optional string name = 1;</code> 13865 14353 */ 13866 public com.google.protobuf.ByteString 14354 @Override 14355 public com.google.protobuf.ByteString 13867 14356 getNameBytes() { 13868 14357 java.lang.Object ref = name_; 13869 14358 if (ref instanceof String) { 13870 com.google.protobuf.ByteString b = 14359 com.google.protobuf.ByteString b = 13871 14360 com.google.protobuf.ByteString.copyFromUtf8( 13872 14361 (java.lang.String) ref); … … 13922 14411 * </pre> 13923 14412 */ 13924 public boolean hasInputType() { 14413 @Override 14414 public boolean hasInputType() { 13925 14415 return ((bitField0_ & 0x00000002) == 0x00000002); 13926 14416 } … … 13933 14423 * </pre> 13934 14424 */ 13935 public java.lang.String getInputType() { 14425 @Override 14426 public java.lang.String getInputType() { 13936 14427 java.lang.Object ref = inputType_; 13937 14428 if (!(ref instanceof java.lang.String)) { … … 13955 14446 * </pre> 13956 14447 */ 13957 public com.google.protobuf.ByteString 14448 @Override 14449 public com.google.protobuf.ByteString 13958 14450 getInputTypeBytes() { 13959 14451 java.lang.Object ref = inputType_; 13960 14452 if (ref instanceof String) { 13961 com.google.protobuf.ByteString b = 14453 com.google.protobuf.ByteString b = 13962 14454 com.google.protobuf.ByteString.copyFromUtf8( 13963 14455 (java.lang.String) ref); … … 14023 14515 * <code>optional string output_type = 3;</code> 14024 14516 */ 14025 public boolean hasOutputType() { 14517 @Override 14518 public boolean hasOutputType() { 14026 14519 return ((bitField0_ & 0x00000004) == 0x00000004); 14027 14520 } … … 14029 14522 * <code>optional string output_type = 3;</code> 14030 14523 */ 14031 public java.lang.String getOutputType() { 14524 @Override 14525 public java.lang.String getOutputType() { 14032 14526 java.lang.Object ref = outputType_; 14033 14527 if (!(ref instanceof java.lang.String)) { … … 14046 14540 * <code>optional string output_type = 3;</code> 14047 14541 */ 14048 public com.google.protobuf.ByteString 14542 @Override 14543 public com.google.protobuf.ByteString 14049 14544 getOutputTypeBytes() { 14050 14545 java.lang.Object ref = outputType_; 14051 14546 if (ref instanceof String) { 14052 com.google.protobuf.ByteString b = 14547 com.google.protobuf.ByteString b = 14053 14548 com.google.protobuf.ByteString.copyFromUtf8( 14054 14549 (java.lang.String) ref); … … 14101 14596 * <code>optional .google.protobuf.MethodOptions options = 4;</code> 14102 14597 */ 14103 public boolean hasOptions() { 14598 @Override 14599 public boolean hasOptions() { 14104 14600 return ((bitField0_ & 0x00000008) == 0x00000008); 14105 14601 } … … 14107 14603 * <code>optional .google.protobuf.MethodOptions options = 4;</code> 14108 14604 */ 14109 public com.google.protobuf.DescriptorProtos.MethodOptions getOptions() { 14605 @Override 14606 public com.google.protobuf.DescriptorProtos.MethodOptions getOptions() { 14110 14607 if (optionsBuilder_ == null) { 14111 14608 return options_; … … 14187 14684 * <code>optional .google.protobuf.MethodOptions options = 4;</code> 14188 14685 */ 14189 public com.google.protobuf.DescriptorProtos.MethodOptionsOrBuilder getOptionsOrBuilder() { 14686 @Override 14687 public com.google.protobuf.DescriptorProtos.MethodOptionsOrBuilder getOptionsOrBuilder() { 14190 14688 if (optionsBuilder_ != null) { 14191 14689 return optionsBuilder_.getMessageOrBuilder(); … … 14198 14696 */ 14199 14697 private com.google.protobuf.SingleFieldBuilder< 14200 com.google.protobuf.DescriptorProtos.MethodOptions, com.google.protobuf.DescriptorProtos.MethodOptions.Builder, com.google.protobuf.DescriptorProtos.MethodOptionsOrBuilder> 14698 com.google.protobuf.DescriptorProtos.MethodOptions, com.google.protobuf.DescriptorProtos.MethodOptions.Builder, com.google.protobuf.DescriptorProtos.MethodOptionsOrBuilder> 14201 14699 getOptionsFieldBuilder() { 14202 14700 if (optionsBuilder_ == null) { … … 14507 15005 * </pre> 14508 15006 */ 14509 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 15007 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 14510 15008 getUninterpretedOptionList(); 14511 15009 /** … … 14532 15030 * </pre> 14533 15031 */ 14534 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 15032 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 14535 15033 getUninterpretedOptionOrBuilderList(); 14536 15034 /** … … 14564 15062 } 14565 15063 14566 public FileOptions getDefaultInstanceForType() { 15064 @Override 15065 public FileOptions getDefaultInstanceForType() { 14567 15066 return defaultInstance; 14568 15067 } … … 14689 15188 } 14690 15189 14691 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 15190 @Override 15191 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 14692 15192 internalGetFieldAccessorTable() { 14693 15193 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FileOptions_fieldAccessorTable … … 14698 15198 public static com.google.protobuf.Parser<FileOptions> PARSER = 14699 15199 new com.google.protobuf.AbstractParser<FileOptions>() { 14700 public FileOptions parsePartialFrom( 15200 @Override 15201 public FileOptions parsePartialFrom( 14701 15202 com.google.protobuf.CodedInputStream input, 14702 15203 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 14772 15273 14773 15274 14774 public final int getNumber() { return value; } 15275 @Override 15276 public final int getNumber() { return value; } 14775 15277 14776 15278 public static OptimizeMode valueOf(int value) { … … 14790 15292 internalValueMap = 14791 15293 new com.google.protobuf.Internal.EnumLiteMap<OptimizeMode>() { 14792 public OptimizeMode findValueByNumber(int number) { 15294 @Override 15295 public OptimizeMode findValueByNumber(int number) { 14793 15296 return OptimizeMode.valueOf(number); 14794 15297 } 14795 15298 }; 14796 15299 14797 public final com.google.protobuf.Descriptors.EnumValueDescriptor 15300 @Override 15301 public final com.google.protobuf.Descriptors.EnumValueDescriptor 14798 15302 getValueDescriptor() { 14799 15303 return getDescriptor().getValues().get(index); 14800 15304 } 14801 public final com.google.protobuf.Descriptors.EnumDescriptor 15305 @Override 15306 public final com.google.protobuf.Descriptors.EnumDescriptor 14802 15307 getDescriptorForType() { 14803 15308 return getDescriptor(); … … 14843 15348 * </pre> 14844 15349 */ 14845 public boolean hasJavaPackage() { 15350 @Override 15351 public boolean hasJavaPackage() { 14846 15352 return ((bitField0_ & 0x00000001) == 0x00000001); 14847 15353 } … … 14856 15362 * </pre> 14857 15363 */ 14858 public java.lang.String getJavaPackage() { 15364 @Override 15365 public java.lang.String getJavaPackage() { 14859 15366 java.lang.Object ref = javaPackage_; 14860 15367 if (ref instanceof java.lang.String) { 14861 15368 return (java.lang.String) ref; 14862 15369 } else { 14863 com.google.protobuf.ByteString bs = 15370 com.google.protobuf.ByteString bs = 14864 15371 (com.google.protobuf.ByteString) ref; 14865 15372 java.lang.String s = bs.toStringUtf8(); … … 14880 15387 * </pre> 14881 15388 */ 14882 public com.google.protobuf.ByteString 15389 @Override 15390 public com.google.protobuf.ByteString 14883 15391 getJavaPackageBytes() { 14884 15392 java.lang.Object ref = javaPackage_; 14885 15393 if (ref instanceof java.lang.String) { 14886 com.google.protobuf.ByteString b = 15394 com.google.protobuf.ByteString b = 14887 15395 com.google.protobuf.ByteString.copyFromUtf8( 14888 15396 (java.lang.String) ref); … … 14907 15415 * </pre> 14908 15416 */ 14909 public boolean hasJavaOuterClassname() { 15417 @Override 15418 public boolean hasJavaOuterClassname() { 14910 15419 return ((bitField0_ & 0x00000002) == 0x00000002); 14911 15420 } … … 14921 15430 * </pre> 14922 15431 */ 14923 public java.lang.String getJavaOuterClassname() { 15432 @Override 15433 public java.lang.String getJavaOuterClassname() { 14924 15434 java.lang.Object ref = javaOuterClassname_; 14925 15435 if (ref instanceof java.lang.String) { 14926 15436 return (java.lang.String) ref; 14927 15437 } else { 14928 com.google.protobuf.ByteString bs = 15438 com.google.protobuf.ByteString bs = 14929 15439 (com.google.protobuf.ByteString) ref; 14930 15440 java.lang.String s = bs.toStringUtf8(); … … 14946 15456 * </pre> 14947 15457 */ 14948 public com.google.protobuf.ByteString 15458 @Override 15459 public com.google.protobuf.ByteString 14949 15460 getJavaOuterClassnameBytes() { 14950 15461 java.lang.Object ref = javaOuterClassname_; 14951 15462 if (ref instanceof java.lang.String) { 14952 com.google.protobuf.ByteString b = 15463 com.google.protobuf.ByteString b = 14953 15464 com.google.protobuf.ByteString.copyFromUtf8( 14954 15465 (java.lang.String) ref); … … 14974 15485 * </pre> 14975 15486 */ 14976 public boolean hasJavaMultipleFiles() { 15487 @Override 15488 public boolean hasJavaMultipleFiles() { 14977 15489 return ((bitField0_ & 0x00000004) == 0x00000004); 14978 15490 } … … 14989 15501 * </pre> 14990 15502 */ 14991 public boolean getJavaMultipleFiles() { 15503 @Override 15504 public boolean getJavaMultipleFiles() { 14992 15505 return javaMultipleFiles_; 14993 15506 } … … 15011 15524 * </pre> 15012 15525 */ 15013 public boolean hasJavaGenerateEqualsAndHash() { 15526 @Override 15527 public boolean hasJavaGenerateEqualsAndHash() { 15014 15528 return ((bitField0_ & 0x00000008) == 0x00000008); 15015 15529 } … … 15030 15544 * </pre> 15031 15545 */ 15032 public boolean getJavaGenerateEqualsAndHash() { 15546 @Override 15547 public boolean getJavaGenerateEqualsAndHash() { 15033 15548 return javaGenerateEqualsAndHash_; 15034 15549 } … … 15048 15563 * </pre> 15049 15564 */ 15050 public boolean hasJavaStringCheckUtf8() { 15565 @Override 15566 public boolean hasJavaStringCheckUtf8() { 15051 15567 return ((bitField0_ & 0x00000010) == 0x00000010); 15052 15568 } … … 15063 15579 * </pre> 15064 15580 */ 15065 public boolean getJavaStringCheckUtf8() { 15581 @Override 15582 public boolean getJavaStringCheckUtf8() { 15066 15583 return javaStringCheckUtf8_; 15067 15584 } … … 15072 15589 * <code>optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];</code> 15073 15590 */ 15074 public boolean hasOptimizeFor() { 15591 @Override 15592 public boolean hasOptimizeFor() { 15075 15593 return ((bitField0_ & 0x00000020) == 0x00000020); 15076 15594 } … … 15078 15596 * <code>optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];</code> 15079 15597 */ 15080 public com.google.protobuf.DescriptorProtos.FileOptions.OptimizeMode getOptimizeFor() { 15598 @Override 15599 public com.google.protobuf.DescriptorProtos.FileOptions.OptimizeMode getOptimizeFor() { 15081 15600 return optimizeFor_; 15082 15601 } … … 15092 15611 * </pre> 15093 15612 */ 15094 public boolean hasGoPackage() { 15613 @Override 15614 public boolean hasGoPackage() { 15095 15615 return ((bitField0_ & 0x00000040) == 0x00000040); 15096 15616 } … … 15103 15623 * </pre> 15104 15624 */ 15105 public java.lang.String getGoPackage() { 15625 @Override 15626 public java.lang.String getGoPackage() { 15106 15627 java.lang.Object ref = goPackage_; 15107 15628 if (ref instanceof java.lang.String) { 15108 15629 return (java.lang.String) ref; 15109 15630 } else { 15110 com.google.protobuf.ByteString bs = 15631 com.google.protobuf.ByteString bs = 15111 15632 (com.google.protobuf.ByteString) ref; 15112 15633 java.lang.String s = bs.toStringUtf8(); … … 15125 15646 * </pre> 15126 15647 */ 15127 public com.google.protobuf.ByteString 15648 @Override 15649 public com.google.protobuf.ByteString 15128 15650 getGoPackageBytes() { 15129 15651 java.lang.Object ref = goPackage_; 15130 15652 if (ref instanceof java.lang.String) { 15131 com.google.protobuf.ByteString b = 15653 com.google.protobuf.ByteString b = 15132 15654 com.google.protobuf.ByteString.copyFromUtf8( 15133 15655 (java.lang.String) ref); … … 15156 15678 * </pre> 15157 15679 */ 15158 public boolean hasCcGenericServices() { 15680 @Override 15681 public boolean hasCcGenericServices() { 15159 15682 return ((bitField0_ & 0x00000080) == 0x00000080); 15160 15683 } … … 15174 15697 * </pre> 15175 15698 */ 15176 public boolean getCcGenericServices() { 15699 @Override 15700 public boolean getCcGenericServices() { 15177 15701 return ccGenericServices_; 15178 15702 } … … 15183 15707 * <code>optional bool java_generic_services = 17 [default = false];</code> 15184 15708 */ 15185 public boolean hasJavaGenericServices() { 15709 @Override 15710 public boolean hasJavaGenericServices() { 15186 15711 return ((bitField0_ & 0x00000100) == 0x00000100); 15187 15712 } … … 15189 15714 * <code>optional bool java_generic_services = 17 [default = false];</code> 15190 15715 */ 15191 public boolean getJavaGenericServices() { 15716 @Override 15717 public boolean getJavaGenericServices() { 15192 15718 return javaGenericServices_; 15193 15719 } … … 15198 15724 * <code>optional bool py_generic_services = 18 [default = false];</code> 15199 15725 */ 15200 public boolean hasPyGenericServices() { 15726 @Override 15727 public boolean hasPyGenericServices() { 15201 15728 return ((bitField0_ & 0x00000200) == 0x00000200); 15202 15729 } … … 15204 15731 * <code>optional bool py_generic_services = 18 [default = false];</code> 15205 15732 */ 15206 public boolean getPyGenericServices() { 15733 @Override 15734 public boolean getPyGenericServices() { 15207 15735 return pyGenericServices_; 15208 15736 } … … 15220 15748 * </pre> 15221 15749 */ 15222 public boolean hasDeprecated() { 15750 @Override 15751 public boolean hasDeprecated() { 15223 15752 return ((bitField0_ & 0x00000400) == 0x00000400); 15224 15753 } … … 15233 15762 * </pre> 15234 15763 */ 15235 public boolean getDeprecated() { 15764 @Override 15765 public boolean getDeprecated() { 15236 15766 return deprecated_; 15237 15767 } … … 15246 15776 * </pre> 15247 15777 */ 15248 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 15778 @Override 15779 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 15249 15780 return uninterpretedOption_; 15250 15781 } … … 15256 15787 * </pre> 15257 15788 */ 15258 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 15789 @Override 15790 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 15259 15791 getUninterpretedOptionOrBuilderList() { 15260 15792 return uninterpretedOption_; … … 15267 15799 * </pre> 15268 15800 */ 15269 public int getUninterpretedOptionCount() { 15801 @Override 15802 public int getUninterpretedOptionCount() { 15270 15803 return uninterpretedOption_.size(); 15271 15804 } … … 15277 15810 * </pre> 15278 15811 */ 15279 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 15812 @Override 15813 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 15280 15814 return uninterpretedOption_.get(index); 15281 15815 } … … 15287 15821 * </pre> 15288 15822 */ 15289 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 15823 @Override 15824 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 15290 15825 int index) { 15291 15826 return uninterpretedOption_.get(index); … … 15307 15842 } 15308 15843 private byte memoizedIsInitialized = -1; 15309 public final boolean isInitialized() { 15844 @Override 15845 public final boolean isInitialized() { 15310 15846 byte isInitialized = memoizedIsInitialized; 15311 15847 if (isInitialized == 1) return true; … … 15326 15862 } 15327 15863 15328 public void writeTo(com.google.protobuf.CodedOutputStream output) 15864 @Override 15865 public void writeTo(com.google.protobuf.CodedOutputStream output) 15329 15866 throws java.io.IOException { 15330 15867 getSerializedSize(); … … 15373 15910 15374 15911 private int memoizedSerializedSize = -1; 15375 public int getSerializedSize() { 15912 @Override 15913 public int getSerializedSize() { 15376 15914 int size = memoizedSerializedSize; 15377 15915 if (size != -1) return size; … … 15493 16031 15494 16032 public static Builder newBuilder() { return Builder.create(); } 15495 public Builder newBuilderForType() { return newBuilder(); } 16033 @Override 16034 public Builder newBuilderForType() { return newBuilder(); } 15496 16035 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.FileOptions prototype) { 15497 16036 return newBuilder().mergeFrom(prototype); 15498 16037 } 15499 public Builder toBuilder() { return newBuilder(this); } 16038 @Override 16039 public Builder toBuilder() { return newBuilder(this); } 15500 16040 15501 16041 @java.lang.Override … … 15518 16058 } 15519 16059 15520 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 16060 @Override 16061 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 15521 16062 internalGetFieldAccessorTable() { 15522 16063 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FileOptions_fieldAccessorTable … … 15544 16085 } 15545 16086 15546 public Builder clear() { 16087 @Override 16088 public Builder clear() { 15547 16089 super.clear(); 15548 16090 javaPackage_ = ""; … … 15577 16119 } 15578 16120 15579 public Builder clone() { 16121 @Override 16122 public Builder clone() { 15580 16123 return create().mergeFrom(buildPartial()); 15581 16124 } 15582 16125 15583 public com.google.protobuf.Descriptors.Descriptor 16126 @Override 16127 public com.google.protobuf.Descriptors.Descriptor 15584 16128 getDescriptorForType() { 15585 16129 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FileOptions_descriptor; 15586 16130 } 15587 16131 15588 public com.google.protobuf.DescriptorProtos.FileOptions getDefaultInstanceForType() { 16132 @Override 16133 public com.google.protobuf.DescriptorProtos.FileOptions getDefaultInstanceForType() { 15589 16134 return com.google.protobuf.DescriptorProtos.FileOptions.getDefaultInstance(); 15590 16135 } 15591 16136 15592 public com.google.protobuf.DescriptorProtos.FileOptions build() { 16137 @Override 16138 public com.google.protobuf.DescriptorProtos.FileOptions build() { 15593 16139 com.google.protobuf.DescriptorProtos.FileOptions result = buildPartial(); 15594 16140 if (!result.isInitialized()) { … … 15598 16144 } 15599 16145 15600 public com.google.protobuf.DescriptorProtos.FileOptions buildPartial() { 16146 @Override 16147 public com.google.protobuf.DescriptorProtos.FileOptions buildPartial() { 15601 16148 com.google.protobuf.DescriptorProtos.FileOptions result = new com.google.protobuf.DescriptorProtos.FileOptions(this); 15602 16149 int from_bitField0_ = bitField0_; … … 15660 16207 } 15661 16208 15662 public Builder mergeFrom(com.google.protobuf.Message other) { 16209 @Override 16210 public Builder mergeFrom(com.google.protobuf.Message other) { 15663 16211 if (other instanceof com.google.protobuf.DescriptorProtos.FileOptions) { 15664 16212 return mergeFrom((com.google.protobuf.DescriptorProtos.FileOptions)other); … … 15728 16276 uninterpretedOption_ = other.uninterpretedOption_; 15729 16277 bitField0_ = (bitField0_ & ~0x00000800); 15730 uninterpretedOptionBuilder_ = 16278 uninterpretedOptionBuilder_ = 15731 16279 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 15732 16280 getUninterpretedOptionFieldBuilder() : null; … … 15741 16289 } 15742 16290 15743 public final boolean isInitialized() { 16291 @Override 16292 public final boolean isInitialized() { 15744 16293 for (int i = 0; i < getUninterpretedOptionCount(); i++) { 15745 16294 if (!getUninterpretedOption(i).isInitialized()) { 15746 16295 15747 16296 return false; 15748 16297 } 15749 16298 } 15750 16299 if (!extensionsAreInitialized()) { 15751 16300 15752 16301 return false; 15753 16302 } … … 15755 16304 } 15756 16305 15757 public Builder mergeFrom( 16306 @Override 16307 public Builder mergeFrom( 15758 16308 com.google.protobuf.CodedInputStream input, 15759 16309 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 15785 16335 * </pre> 15786 16336 */ 15787 public boolean hasJavaPackage() { 16337 @Override 16338 public boolean hasJavaPackage() { 15788 16339 return ((bitField0_ & 0x00000001) == 0x00000001); 15789 16340 } … … 15798 16349 * </pre> 15799 16350 */ 15800 public java.lang.String getJavaPackage() { 16351 @Override 16352 public java.lang.String getJavaPackage() { 15801 16353 java.lang.Object ref = javaPackage_; 15802 16354 if (!(ref instanceof java.lang.String)) { … … 15822 16374 * </pre> 15823 16375 */ 15824 public com.google.protobuf.ByteString 16376 @Override 16377 public com.google.protobuf.ByteString 15825 16378 getJavaPackageBytes() { 15826 16379 java.lang.Object ref = javaPackage_; 15827 16380 if (ref instanceof String) { 15828 com.google.protobuf.ByteString b = 16381 com.google.protobuf.ByteString b = 15829 16382 com.google.protobuf.ByteString.copyFromUtf8( 15830 16383 (java.lang.String) ref); … … 15904 16457 * </pre> 15905 16458 */ 15906 public boolean hasJavaOuterClassname() { 16459 @Override 16460 public boolean hasJavaOuterClassname() { 15907 16461 return ((bitField0_ & 0x00000002) == 0x00000002); 15908 16462 } … … 15918 16472 * </pre> 15919 16473 */ 15920 public java.lang.String getJavaOuterClassname() { 16474 @Override 16475 public java.lang.String getJavaOuterClassname() { 15921 16476 java.lang.Object ref = javaOuterClassname_; 15922 16477 if (!(ref instanceof java.lang.String)) { … … 15943 16498 * </pre> 15944 16499 */ 15945 public com.google.protobuf.ByteString 16500 @Override 16501 public com.google.protobuf.ByteString 15946 16502 getJavaOuterClassnameBytes() { 15947 16503 java.lang.Object ref = javaOuterClassname_; 15948 16504 if (ref instanceof String) { 15949 com.google.protobuf.ByteString b = 16505 com.google.protobuf.ByteString b = 15950 16506 com.google.protobuf.ByteString.copyFromUtf8( 15951 16507 (java.lang.String) ref); … … 16029 16585 * </pre> 16030 16586 */ 16031 public boolean hasJavaMultipleFiles() { 16587 @Override 16588 public boolean hasJavaMultipleFiles() { 16032 16589 return ((bitField0_ & 0x00000004) == 0x00000004); 16033 16590 } … … 16044 16601 * </pre> 16045 16602 */ 16046 public boolean getJavaMultipleFiles() { 16603 @Override 16604 public boolean getJavaMultipleFiles() { 16047 16605 return javaMultipleFiles_; 16048 16606 } … … 16101 16659 * </pre> 16102 16660 */ 16103 public boolean hasJavaGenerateEqualsAndHash() { 16661 @Override 16662 public boolean hasJavaGenerateEqualsAndHash() { 16104 16663 return ((bitField0_ & 0x00000008) == 0x00000008); 16105 16664 } … … 16120 16679 * </pre> 16121 16680 */ 16122 public boolean getJavaGenerateEqualsAndHash() { 16681 @Override 16682 public boolean getJavaGenerateEqualsAndHash() { 16123 16683 return javaGenerateEqualsAndHash_; 16124 16684 } … … 16181 16741 * </pre> 16182 16742 */ 16183 public boolean hasJavaStringCheckUtf8() { 16743 @Override 16744 public boolean hasJavaStringCheckUtf8() { 16184 16745 return ((bitField0_ & 0x00000010) == 0x00000010); 16185 16746 } … … 16196 16757 * </pre> 16197 16758 */ 16198 public boolean getJavaStringCheckUtf8() { 16759 @Override 16760 public boolean getJavaStringCheckUtf8() { 16199 16761 return javaStringCheckUtf8_; 16200 16762 } … … 16240 16802 * <code>optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];</code> 16241 16803 */ 16242 public boolean hasOptimizeFor() { 16804 @Override 16805 public boolean hasOptimizeFor() { 16243 16806 return ((bitField0_ & 0x00000020) == 0x00000020); 16244 16807 } … … 16246 16809 * <code>optional .google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED];</code> 16247 16810 */ 16248 public com.google.protobuf.DescriptorProtos.FileOptions.OptimizeMode getOptimizeFor() { 16811 @Override 16812 public com.google.protobuf.DescriptorProtos.FileOptions.OptimizeMode getOptimizeFor() { 16249 16813 return optimizeFor_; 16250 16814 } … … 16280 16844 * </pre> 16281 16845 */ 16282 public boolean hasGoPackage() { 16846 @Override 16847 public boolean hasGoPackage() { 16283 16848 return ((bitField0_ & 0x00000040) == 0x00000040); 16284 16849 } … … 16291 16856 * </pre> 16292 16857 */ 16293 public java.lang.String getGoPackage() { 16858 @Override 16859 public java.lang.String getGoPackage() { 16294 16860 java.lang.Object ref = goPackage_; 16295 16861 if (!(ref instanceof java.lang.String)) { … … 16313 16879 * </pre> 16314 16880 */ 16315 public com.google.protobuf.ByteString 16881 @Override 16882 public com.google.protobuf.ByteString 16316 16883 getGoPackageBytes() { 16317 16884 java.lang.Object ref = goPackage_; 16318 16885 if (ref instanceof String) { 16319 com.google.protobuf.ByteString b = 16886 com.google.protobuf.ByteString b = 16320 16887 com.google.protobuf.ByteString.copyFromUtf8( 16321 16888 (java.lang.String) ref); … … 16393 16960 * </pre> 16394 16961 */ 16395 public boolean hasCcGenericServices() { 16962 @Override 16963 public boolean hasCcGenericServices() { 16396 16964 return ((bitField0_ & 0x00000080) == 0x00000080); 16397 16965 } … … 16411 16979 * </pre> 16412 16980 */ 16413 public boolean getCcGenericServices() { 16981 @Override 16982 public boolean getCcGenericServices() { 16414 16983 return ccGenericServices_; 16415 16984 } … … 16461 17030 * <code>optional bool java_generic_services = 17 [default = false];</code> 16462 17031 */ 16463 public boolean hasJavaGenericServices() { 17032 @Override 17033 public boolean hasJavaGenericServices() { 16464 17034 return ((bitField0_ & 0x00000100) == 0x00000100); 16465 17035 } … … 16467 17037 * <code>optional bool java_generic_services = 17 [default = false];</code> 16468 17038 */ 16469 public boolean getJavaGenericServices() { 17039 @Override 17040 public boolean getJavaGenericServices() { 16470 17041 return javaGenericServices_; 16471 17042 } … … 16493 17064 * <code>optional bool py_generic_services = 18 [default = false];</code> 16494 17065 */ 16495 public boolean hasPyGenericServices() { 17066 @Override 17067 public boolean hasPyGenericServices() { 16496 17068 return ((bitField0_ & 0x00000200) == 0x00000200); 16497 17069 } … … 16499 17071 * <code>optional bool py_generic_services = 18 [default = false];</code> 16500 17072 */ 16501 public boolean getPyGenericServices() { 17073 @Override 17074 public boolean getPyGenericServices() { 16502 17075 return pyGenericServices_; 16503 17076 } … … 16532 17105 * </pre> 16533 17106 */ 16534 public boolean hasDeprecated() { 17107 @Override 17108 public boolean hasDeprecated() { 16535 17109 return ((bitField0_ & 0x00000400) == 0x00000400); 16536 17110 } … … 16545 17119 * </pre> 16546 17120 */ 16547 public boolean getDeprecated() { 17121 @Override 17122 public boolean getDeprecated() { 16548 17123 return deprecated_; 16549 17124 } … … 16600 17175 * </pre> 16601 17176 */ 16602 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 17177 @Override 17178 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 16603 17179 if (uninterpretedOptionBuilder_ == null) { 16604 17180 return java.util.Collections.unmodifiableList(uninterpretedOption_); … … 16614 17190 * </pre> 16615 17191 */ 16616 public int getUninterpretedOptionCount() { 17192 @Override 17193 public int getUninterpretedOptionCount() { 16617 17194 if (uninterpretedOptionBuilder_ == null) { 16618 17195 return uninterpretedOption_.size(); … … 16628 17205 * </pre> 16629 17206 */ 16630 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 17207 @Override 17208 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 16631 17209 if (uninterpretedOptionBuilder_ == null) { 16632 17210 return uninterpretedOption_.get(index); … … 16822 17400 * </pre> 16823 17401 */ 16824 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 17402 @Override 17403 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 16825 17404 int index) { 16826 17405 if (uninterpretedOptionBuilder_ == null) { … … 16836 17415 * </pre> 16837 17416 */ 16838 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 17417 @Override 17418 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 16839 17419 getUninterpretedOptionOrBuilderList() { 16840 17420 if (uninterpretedOptionBuilder_ != null) { … … 16874 17454 * </pre> 16875 17455 */ 16876 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 17456 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 16877 17457 getUninterpretedOptionBuilderList() { 16878 17458 return getUninterpretedOptionFieldBuilder().getBuilderList(); 16879 17459 } 16880 17460 private com.google.protobuf.RepeatedFieldBuilder< 16881 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 17461 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 16882 17462 getUninterpretedOptionFieldBuilder() { 16883 17463 if (uninterpretedOptionBuilder_ == null) { … … 17004 17584 * </pre> 17005 17585 */ 17006 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 17586 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 17007 17587 getUninterpretedOptionList(); 17008 17588 /** … … 17029 17609 * </pre> 17030 17610 */ 17031 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 17611 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 17032 17612 getUninterpretedOptionOrBuilderList(); 17033 17613 /** … … 17061 17641 } 17062 17642 17063 public MessageOptions getDefaultInstanceForType() { 17643 @Override 17644 public MessageOptions getDefaultInstanceForType() { 17064 17645 return defaultInstance; 17065 17646 } … … 17137 17718 } 17138 17719 17139 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 17720 @Override 17721 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 17140 17722 internalGetFieldAccessorTable() { 17141 17723 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_MessageOptions_fieldAccessorTable … … 17146 17728 public static com.google.protobuf.Parser<MessageOptions> PARSER = 17147 17729 new com.google.protobuf.AbstractParser<MessageOptions>() { 17148 public MessageOptions parsePartialFrom( 17730 @Override 17731 public MessageOptions parsePartialFrom( 17149 17732 com.google.protobuf.CodedInputStream input, 17150 17733 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 17183 17766 * </pre> 17184 17767 */ 17185 public boolean hasMessageSetWireFormat() { 17768 @Override 17769 public boolean hasMessageSetWireFormat() { 17186 17770 return ((bitField0_ & 0x00000001) == 0x00000001); 17187 17771 } … … 17207 17791 * </pre> 17208 17792 */ 17209 public boolean getMessageSetWireFormat() { 17793 @Override 17794 public boolean getMessageSetWireFormat() { 17210 17795 return messageSetWireFormat_; 17211 17796 } … … 17222 17807 * </pre> 17223 17808 */ 17224 public boolean hasNoStandardDescriptorAccessor() { 17809 @Override 17810 public boolean hasNoStandardDescriptorAccessor() { 17225 17811 return ((bitField0_ & 0x00000002) == 0x00000002); 17226 17812 } … … 17234 17820 * </pre> 17235 17821 */ 17236 public boolean getNoStandardDescriptorAccessor() { 17822 @Override 17823 public boolean getNoStandardDescriptorAccessor() { 17237 17824 return noStandardDescriptorAccessor_; 17238 17825 } … … 17250 17837 * </pre> 17251 17838 */ 17252 public boolean hasDeprecated() { 17839 @Override 17840 public boolean hasDeprecated() { 17253 17841 return ((bitField0_ & 0x00000004) == 0x00000004); 17254 17842 } … … 17263 17851 * </pre> 17264 17852 */ 17265 public boolean getDeprecated() { 17853 @Override 17854 public boolean getDeprecated() { 17266 17855 return deprecated_; 17267 17856 } … … 17276 17865 * </pre> 17277 17866 */ 17278 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 17867 @Override 17868 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 17279 17869 return uninterpretedOption_; 17280 17870 } … … 17286 17876 * </pre> 17287 17877 */ 17288 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 17878 @Override 17879 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 17289 17880 getUninterpretedOptionOrBuilderList() { 17290 17881 return uninterpretedOption_; … … 17297 17888 * </pre> 17298 17889 */ 17299 public int getUninterpretedOptionCount() { 17890 @Override 17891 public int getUninterpretedOptionCount() { 17300 17892 return uninterpretedOption_.size(); 17301 17893 } … … 17307 17899 * </pre> 17308 17900 */ 17309 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 17901 @Override 17902 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 17310 17903 return uninterpretedOption_.get(index); 17311 17904 } … … 17317 17910 * </pre> 17318 17911 */ 17319 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 17912 @Override 17913 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 17320 17914 int index) { 17321 17915 return uninterpretedOption_.get(index); … … 17329 17923 } 17330 17924 private byte memoizedIsInitialized = -1; 17331 public final boolean isInitialized() { 17925 @Override 17926 public final boolean isInitialized() { 17332 17927 byte isInitialized = memoizedIsInitialized; 17333 17928 if (isInitialized == 1) return true; … … 17348 17943 } 17349 17944 17350 public void writeTo(com.google.protobuf.CodedOutputStream output) 17945 @Override 17946 public void writeTo(com.google.protobuf.CodedOutputStream output) 17351 17947 throws java.io.IOException { 17352 17948 getSerializedSize(); … … 17371 17967 17372 17968 private int memoizedSerializedSize = -1; 17373 public int getSerializedSize() { 17969 @Override 17970 public int getSerializedSize() { 17374 17971 int size = memoizedSerializedSize; 17375 17972 if (size != -1) return size; … … 17459 18056 17460 18057 public static Builder newBuilder() { return Builder.create(); } 17461 public Builder newBuilderForType() { return newBuilder(); } 18058 @Override 18059 public Builder newBuilderForType() { return newBuilder(); } 17462 18060 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.MessageOptions prototype) { 17463 18061 return newBuilder().mergeFrom(prototype); 17464 18062 } 17465 public Builder toBuilder() { return newBuilder(this); } 18063 @Override 18064 public Builder toBuilder() { return newBuilder(this); } 17466 18065 17467 18066 @java.lang.Override … … 17484 18083 } 17485 18084 17486 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 18085 @Override 18086 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 17487 18087 internalGetFieldAccessorTable() { 17488 18088 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_MessageOptions_fieldAccessorTable … … 17510 18110 } 17511 18111 17512 public Builder clear() { 18112 @Override 18113 public Builder clear() { 17513 18114 super.clear(); 17514 18115 messageSetWireFormat_ = false; … … 17527 18128 } 17528 18129 17529 public Builder clone() { 18130 @Override 18131 public Builder clone() { 17530 18132 return create().mergeFrom(buildPartial()); 17531 18133 } 17532 18134 17533 public com.google.protobuf.Descriptors.Descriptor 18135 @Override 18136 public com.google.protobuf.Descriptors.Descriptor 17534 18137 getDescriptorForType() { 17535 18138 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_MessageOptions_descriptor; 17536 18139 } 17537 18140 17538 public com.google.protobuf.DescriptorProtos.MessageOptions getDefaultInstanceForType() { 18141 @Override 18142 public com.google.protobuf.DescriptorProtos.MessageOptions getDefaultInstanceForType() { 17539 18143 return com.google.protobuf.DescriptorProtos.MessageOptions.getDefaultInstance(); 17540 18144 } 17541 18145 17542 public com.google.protobuf.DescriptorProtos.MessageOptions build() { 18146 @Override 18147 public com.google.protobuf.DescriptorProtos.MessageOptions build() { 17543 18148 com.google.protobuf.DescriptorProtos.MessageOptions result = buildPartial(); 17544 18149 if (!result.isInitialized()) { … … 17548 18153 } 17549 18154 17550 public com.google.protobuf.DescriptorProtos.MessageOptions buildPartial() { 18155 @Override 18156 public com.google.protobuf.DescriptorProtos.MessageOptions buildPartial() { 17551 18157 com.google.protobuf.DescriptorProtos.MessageOptions result = new com.google.protobuf.DescriptorProtos.MessageOptions(this); 17552 18158 int from_bitField0_ = bitField0_; … … 17578 18184 } 17579 18185 17580 public Builder mergeFrom(com.google.protobuf.Message other) { 18186 @Override 18187 public Builder mergeFrom(com.google.protobuf.Message other) { 17581 18188 if (other instanceof com.google.protobuf.DescriptorProtos.MessageOptions) { 17582 18189 return mergeFrom((com.google.protobuf.DescriptorProtos.MessageOptions)other); … … 17616 18223 uninterpretedOption_ = other.uninterpretedOption_; 17617 18224 bitField0_ = (bitField0_ & ~0x00000008); 17618 uninterpretedOptionBuilder_ = 18225 uninterpretedOptionBuilder_ = 17619 18226 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 17620 18227 getUninterpretedOptionFieldBuilder() : null; … … 17629 18236 } 17630 18237 17631 public final boolean isInitialized() { 18238 @Override 18239 public final boolean isInitialized() { 17632 18240 for (int i = 0; i < getUninterpretedOptionCount(); i++) { 17633 18241 if (!getUninterpretedOption(i).isInitialized()) { 17634 18242 17635 18243 return false; 17636 18244 } 17637 18245 } 17638 18246 if (!extensionsAreInitialized()) { 17639 18247 17640 18248 return false; 17641 18249 } … … 17643 18251 } 17644 18252 17645 public Builder mergeFrom( 18253 @Override 18254 public Builder mergeFrom( 17646 18255 com.google.protobuf.CodedInputStream input, 17647 18256 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 17684 18293 * </pre> 17685 18294 */ 17686 public boolean hasMessageSetWireFormat() { 18295 @Override 18296 public boolean hasMessageSetWireFormat() { 17687 18297 return ((bitField0_ & 0x00000001) == 0x00000001); 17688 18298 } … … 17708 18318 * </pre> 17709 18319 */ 17710 public boolean getMessageSetWireFormat() { 18320 @Override 18321 public boolean getMessageSetWireFormat() { 17711 18322 return messageSetWireFormat_; 17712 18323 } … … 17776 18387 * </pre> 17777 18388 */ 17778 public boolean hasNoStandardDescriptorAccessor() { 18389 @Override 18390 public boolean hasNoStandardDescriptorAccessor() { 17779 18391 return ((bitField0_ & 0x00000002) == 0x00000002); 17780 18392 } … … 17788 18400 * </pre> 17789 18401 */ 17790 public boolean getNoStandardDescriptorAccessor() { 18402 @Override 18403 public boolean getNoStandardDescriptorAccessor() { 17791 18404 return noStandardDescriptorAccessor_; 17792 18405 } … … 17833 18446 * </pre> 17834 18447 */ 17835 public boolean hasDeprecated() { 18448 @Override 18449 public boolean hasDeprecated() { 17836 18450 return ((bitField0_ & 0x00000004) == 0x00000004); 17837 18451 } … … 17846 18460 * </pre> 17847 18461 */ 17848 public boolean getDeprecated() { 18462 @Override 18463 public boolean getDeprecated() { 17849 18464 return deprecated_; 17850 18465 } … … 17901 18516 * </pre> 17902 18517 */ 17903 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 18518 @Override 18519 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 17904 18520 if (uninterpretedOptionBuilder_ == null) { 17905 18521 return java.util.Collections.unmodifiableList(uninterpretedOption_); … … 17915 18531 * </pre> 17916 18532 */ 17917 public int getUninterpretedOptionCount() { 18533 @Override 18534 public int getUninterpretedOptionCount() { 17918 18535 if (uninterpretedOptionBuilder_ == null) { 17919 18536 return uninterpretedOption_.size(); … … 17929 18546 * </pre> 17930 18547 */ 17931 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 18548 @Override 18549 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 17932 18550 if (uninterpretedOptionBuilder_ == null) { 17933 18551 return uninterpretedOption_.get(index); … … 18123 18741 * </pre> 18124 18742 */ 18125 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 18743 @Override 18744 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 18126 18745 int index) { 18127 18746 if (uninterpretedOptionBuilder_ == null) { … … 18137 18756 * </pre> 18138 18757 */ 18139 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 18758 @Override 18759 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 18140 18760 getUninterpretedOptionOrBuilderList() { 18141 18761 if (uninterpretedOptionBuilder_ != null) { … … 18175 18795 * </pre> 18176 18796 */ 18177 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 18797 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 18178 18798 getUninterpretedOptionBuilderList() { 18179 18799 return getUninterpretedOptionFieldBuilder().getBuilderList(); 18180 18800 } 18181 18801 private com.google.protobuf.RepeatedFieldBuilder< 18182 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 18802 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 18183 18803 getUninterpretedOptionFieldBuilder() { 18184 18804 if (uninterpretedOptionBuilder_ == null) { … … 18424 19044 * </pre> 18425 19045 */ 18426 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 19046 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 18427 19047 getUninterpretedOptionList(); 18428 19048 /** … … 18449 19069 * </pre> 18450 19070 */ 18451 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 19071 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 18452 19072 getUninterpretedOptionOrBuilderList(); 18453 19073 /** … … 18481 19101 } 18482 19102 18483 public FieldOptions getDefaultInstanceForType() { 19103 @Override 19104 public FieldOptions getDefaultInstanceForType() { 18484 19105 return defaultInstance; 18485 19106 } … … 18579 19200 } 18580 19201 18581 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 19202 @Override 19203 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 18582 19204 internalGetFieldAccessorTable() { 18583 19205 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FieldOptions_fieldAccessorTable … … 18588 19210 public static com.google.protobuf.Parser<FieldOptions> PARSER = 18589 19211 new com.google.protobuf.AbstractParser<FieldOptions>() { 18590 public FieldOptions parsePartialFrom( 19212 @Override 19213 public FieldOptions parsePartialFrom( 18591 19214 com.google.protobuf.CodedInputStream input, 18592 19215 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 18642 19265 18643 19266 18644 public final int getNumber() { return value; } 19267 @Override 19268 public final int getNumber() { return value; } 18645 19269 18646 19270 public static CType valueOf(int value) { … … 18660 19284 internalValueMap = 18661 19285 new com.google.protobuf.Internal.EnumLiteMap<CType>() { 18662 public CType findValueByNumber(int number) { 19286 @Override 19287 public CType findValueByNumber(int number) { 18663 19288 return CType.valueOf(number); 18664 19289 } 18665 19290 }; 18666 19291 18667 public final com.google.protobuf.Descriptors.EnumValueDescriptor 19292 @Override 19293 public final com.google.protobuf.Descriptors.EnumValueDescriptor 18668 19294 getValueDescriptor() { 18669 19295 return getDescriptor().getValues().get(index); 18670 19296 } 18671 public final com.google.protobuf.Descriptors.EnumDescriptor 19297 @Override 19298 public final com.google.protobuf.Descriptors.EnumDescriptor 18672 19299 getDescriptorForType() { 18673 19300 return getDescriptor(); … … 18713 19340 * </pre> 18714 19341 */ 18715 public boolean hasCtype() { 19342 @Override 19343 public boolean hasCtype() { 18716 19344 return ((bitField0_ & 0x00000001) == 0x00000001); 18717 19345 } … … 18726 19354 * </pre> 18727 19355 */ 18728 public com.google.protobuf.DescriptorProtos.FieldOptions.CType getCtype() { 19356 @Override 19357 public com.google.protobuf.DescriptorProtos.FieldOptions.CType getCtype() { 18729 19358 return ctype_; 18730 19359 } … … 18742 19371 * </pre> 18743 19372 */ 18744 public boolean hasPacked() { 19373 @Override 19374 public boolean hasPacked() { 18745 19375 return ((bitField0_ & 0x00000002) == 0x00000002); 18746 19376 } … … 18755 19385 * </pre> 18756 19386 */ 18757 public boolean getPacked() { 19387 @Override 19388 public boolean getPacked() { 18758 19389 return packed_; 18759 19390 } … … 18791 19422 * </pre> 18792 19423 */ 18793 public boolean hasLazy() { 19424 @Override 19425 public boolean hasLazy() { 18794 19426 return ((bitField0_ & 0x00000004) == 0x00000004); 18795 19427 } … … 18824 19456 * </pre> 18825 19457 */ 18826 public boolean getLazy() { 19458 @Override 19459 public boolean getLazy() { 18827 19460 return lazy_; 18828 19461 } … … 18840 19473 * </pre> 18841 19474 */ 18842 public boolean hasDeprecated() { 19475 @Override 19476 public boolean hasDeprecated() { 18843 19477 return ((bitField0_ & 0x00000008) == 0x00000008); 18844 19478 } … … 18853 19487 * </pre> 18854 19488 */ 18855 public boolean getDeprecated() { 19489 @Override 19490 public boolean getDeprecated() { 18856 19491 return deprecated_; 18857 19492 } … … 18877 19512 * </pre> 18878 19513 */ 18879 public boolean hasExperimentalMapKey() { 19514 @Override 19515 public boolean hasExperimentalMapKey() { 18880 19516 return ((bitField0_ & 0x00000010) == 0x00000010); 18881 19517 } … … 18898 19534 * </pre> 18899 19535 */ 18900 public java.lang.String getExperimentalMapKey() { 19536 @Override 19537 public java.lang.String getExperimentalMapKey() { 18901 19538 java.lang.Object ref = experimentalMapKey_; 18902 19539 if (ref instanceof java.lang.String) { 18903 19540 return (java.lang.String) ref; 18904 19541 } else { 18905 com.google.protobuf.ByteString bs = 19542 com.google.protobuf.ByteString bs = 18906 19543 (com.google.protobuf.ByteString) ref; 18907 19544 java.lang.String s = bs.toStringUtf8(); … … 18930 19567 * </pre> 18931 19568 */ 18932 public com.google.protobuf.ByteString 19569 @Override 19570 public com.google.protobuf.ByteString 18933 19571 getExperimentalMapKeyBytes() { 18934 19572 java.lang.Object ref = experimentalMapKey_; 18935 19573 if (ref instanceof java.lang.String) { 18936 com.google.protobuf.ByteString b = 19574 com.google.protobuf.ByteString b = 18937 19575 com.google.protobuf.ByteString.copyFromUtf8( 18938 19576 (java.lang.String) ref); … … 18953 19591 * </pre> 18954 19592 */ 18955 public boolean hasWeak() { 19593 @Override 19594 public boolean hasWeak() { 18956 19595 return ((bitField0_ & 0x00000020) == 0x00000020); 18957 19596 } … … 18963 19602 * </pre> 18964 19603 */ 18965 public boolean getWeak() { 19604 @Override 19605 public boolean getWeak() { 18966 19606 return weak_; 18967 19607 } … … 18976 19616 * </pre> 18977 19617 */ 18978 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 19618 @Override 19619 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 18979 19620 return uninterpretedOption_; 18980 19621 } … … 18986 19627 * </pre> 18987 19628 */ 18988 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 19629 @Override 19630 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 18989 19631 getUninterpretedOptionOrBuilderList() { 18990 19632 return uninterpretedOption_; … … 18997 19639 * </pre> 18998 19640 */ 18999 public int getUninterpretedOptionCount() { 19641 @Override 19642 public int getUninterpretedOptionCount() { 19000 19643 return uninterpretedOption_.size(); 19001 19644 } … … 19007 19650 * </pre> 19008 19651 */ 19009 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 19652 @Override 19653 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 19010 19654 return uninterpretedOption_.get(index); 19011 19655 } … … 19017 19661 * </pre> 19018 19662 */ 19019 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 19663 @Override 19664 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 19020 19665 int index) { 19021 19666 return uninterpretedOption_.get(index); … … 19032 19677 } 19033 19678 private byte memoizedIsInitialized = -1; 19034 public final boolean isInitialized() { 19679 @Override 19680 public final boolean isInitialized() { 19035 19681 byte isInitialized = memoizedIsInitialized; 19036 19682 if (isInitialized == 1) return true; … … 19051 19697 } 19052 19698 19053 public void writeTo(com.google.protobuf.CodedOutputStream output) 19699 @Override 19700 public void writeTo(com.google.protobuf.CodedOutputStream output) 19054 19701 throws java.io.IOException { 19055 19702 getSerializedSize(); … … 19083 19730 19084 19731 private int memoizedSerializedSize = -1; 19085 public int getSerializedSize() { 19732 @Override 19733 public int getSerializedSize() { 19086 19734 int size = memoizedSerializedSize; 19087 19735 if (size != -1) return size; … … 19183 19831 19184 19832 public static Builder newBuilder() { return Builder.create(); } 19185 public Builder newBuilderForType() { return newBuilder(); } 19833 @Override 19834 public Builder newBuilderForType() { return newBuilder(); } 19186 19835 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.FieldOptions prototype) { 19187 19836 return newBuilder().mergeFrom(prototype); 19188 19837 } 19189 public Builder toBuilder() { return newBuilder(this); } 19838 @Override 19839 public Builder toBuilder() { return newBuilder(this); } 19190 19840 19191 19841 @java.lang.Override … … 19208 19858 } 19209 19859 19210 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 19860 @Override 19861 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 19211 19862 internalGetFieldAccessorTable() { 19212 19863 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FieldOptions_fieldAccessorTable … … 19234 19885 } 19235 19886 19236 public Builder clear() { 19887 @Override 19888 public Builder clear() { 19237 19889 super.clear(); 19238 19890 ctype_ = com.google.protobuf.DescriptorProtos.FieldOptions.CType.STRING; … … 19257 19909 } 19258 19910 19259 public Builder clone() { 19911 @Override 19912 public Builder clone() { 19260 19913 return create().mergeFrom(buildPartial()); 19261 19914 } 19262 19915 19263 public com.google.protobuf.Descriptors.Descriptor 19916 @Override 19917 public com.google.protobuf.Descriptors.Descriptor 19264 19918 getDescriptorForType() { 19265 19919 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_FieldOptions_descriptor; 19266 19920 } 19267 19921 19268 public com.google.protobuf.DescriptorProtos.FieldOptions getDefaultInstanceForType() { 19922 @Override 19923 public com.google.protobuf.DescriptorProtos.FieldOptions getDefaultInstanceForType() { 19269 19924 return com.google.protobuf.DescriptorProtos.FieldOptions.getDefaultInstance(); 19270 19925 } 19271 19926 19272 public com.google.protobuf.DescriptorProtos.FieldOptions build() { 19927 @Override 19928 public com.google.protobuf.DescriptorProtos.FieldOptions build() { 19273 19929 com.google.protobuf.DescriptorProtos.FieldOptions result = buildPartial(); 19274 19930 if (!result.isInitialized()) { … … 19278 19934 } 19279 19935 19280 public com.google.protobuf.DescriptorProtos.FieldOptions buildPartial() { 19936 @Override 19937 public com.google.protobuf.DescriptorProtos.FieldOptions buildPartial() { 19281 19938 com.google.protobuf.DescriptorProtos.FieldOptions result = new com.google.protobuf.DescriptorProtos.FieldOptions(this); 19282 19939 int from_bitField0_ = bitField0_; … … 19320 19977 } 19321 19978 19322 public Builder mergeFrom(com.google.protobuf.Message other) { 19979 @Override 19980 public Builder mergeFrom(com.google.protobuf.Message other) { 19323 19981 if (other instanceof com.google.protobuf.DescriptorProtos.FieldOptions) { 19324 19982 return mergeFrom((com.google.protobuf.DescriptorProtos.FieldOptions)other); … … 19369 20027 uninterpretedOption_ = other.uninterpretedOption_; 19370 20028 bitField0_ = (bitField0_ & ~0x00000040); 19371 uninterpretedOptionBuilder_ = 20029 uninterpretedOptionBuilder_ = 19372 20030 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 19373 20031 getUninterpretedOptionFieldBuilder() : null; … … 19382 20040 } 19383 20041 19384 public final boolean isInitialized() { 20042 @Override 20043 public final boolean isInitialized() { 19385 20044 for (int i = 0; i < getUninterpretedOptionCount(); i++) { 19386 20045 if (!getUninterpretedOption(i).isInitialized()) { 19387 20046 19388 20047 return false; 19389 20048 } 19390 20049 } 19391 20050 if (!extensionsAreInitialized()) { 19392 20051 19393 20052 return false; 19394 20053 } … … 19396 20055 } 19397 20056 19398 public Builder mergeFrom( 20057 @Override 20058 public Builder mergeFrom( 19399 20059 com.google.protobuf.CodedInputStream input, 19400 20060 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 19426 20086 * </pre> 19427 20087 */ 19428 public boolean hasCtype() { 20088 @Override 20089 public boolean hasCtype() { 19429 20090 return ((bitField0_ & 0x00000001) == 0x00000001); 19430 20091 } … … 19439 20100 * </pre> 19440 20101 */ 19441 public com.google.protobuf.DescriptorProtos.FieldOptions.CType getCtype() { 20102 @Override 20103 public com.google.protobuf.DescriptorProtos.FieldOptions.CType getCtype() { 19442 20104 return ctype_; 19443 20105 } … … 19489 20151 * </pre> 19490 20152 */ 19491 public boolean hasPacked() { 20153 @Override 20154 public boolean hasPacked() { 19492 20155 return ((bitField0_ & 0x00000002) == 0x00000002); 19493 20156 } … … 19502 20165 * </pre> 19503 20166 */ 19504 public boolean getPacked() { 20167 @Override 20168 public boolean getPacked() { 19505 20169 return packed_; 19506 20170 } … … 19569 20233 * </pre> 19570 20234 */ 19571 public boolean hasLazy() { 20235 @Override 20236 public boolean hasLazy() { 19572 20237 return ((bitField0_ & 0x00000004) == 0x00000004); 19573 20238 } … … 19602 20267 * </pre> 19603 20268 */ 19604 public boolean getLazy() { 20269 @Override 20270 public boolean getLazy() { 19605 20271 return lazy_; 19606 20272 } … … 19689 20355 * </pre> 19690 20356 */ 19691 public boolean hasDeprecated() { 20357 @Override 20358 public boolean hasDeprecated() { 19692 20359 return ((bitField0_ & 0x00000008) == 0x00000008); 19693 20360 } … … 19702 20369 * </pre> 19703 20370 */ 19704 public boolean getDeprecated() { 20371 @Override 20372 public boolean getDeprecated() { 19705 20373 return deprecated_; 19706 20374 } … … 19757 20425 * </pre> 19758 20426 */ 19759 public boolean hasExperimentalMapKey() { 20427 @Override 20428 public boolean hasExperimentalMapKey() { 19760 20429 return ((bitField0_ & 0x00000010) == 0x00000010); 19761 20430 } … … 19778 20447 * </pre> 19779 20448 */ 19780 public java.lang.String getExperimentalMapKey() { 20449 @Override 20450 public java.lang.String getExperimentalMapKey() { 19781 20451 java.lang.Object ref = experimentalMapKey_; 19782 20452 if (!(ref instanceof java.lang.String)) { … … 19810 20480 * </pre> 19811 20481 */ 19812 public com.google.protobuf.ByteString 20482 @Override 20483 public com.google.protobuf.ByteString 19813 20484 getExperimentalMapKeyBytes() { 19814 20485 java.lang.Object ref = experimentalMapKey_; 19815 20486 if (ref instanceof String) { 19816 com.google.protobuf.ByteString b = 20487 com.google.protobuf.ByteString b = 19817 20488 com.google.protobuf.ByteString.copyFromUtf8( 19818 20489 (java.lang.String) ref); … … 19912 20583 * </pre> 19913 20584 */ 19914 public boolean hasWeak() { 20585 @Override 20586 public boolean hasWeak() { 19915 20587 return ((bitField0_ & 0x00000020) == 0x00000020); 19916 20588 } … … 19922 20594 * </pre> 19923 20595 */ 19924 public boolean getWeak() { 20596 @Override 20597 public boolean getWeak() { 19925 20598 return weak_; 19926 20599 } … … 19971 20644 * </pre> 19972 20645 */ 19973 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 20646 @Override 20647 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 19974 20648 if (uninterpretedOptionBuilder_ == null) { 19975 20649 return java.util.Collections.unmodifiableList(uninterpretedOption_); … … 19985 20659 * </pre> 19986 20660 */ 19987 public int getUninterpretedOptionCount() { 20661 @Override 20662 public int getUninterpretedOptionCount() { 19988 20663 if (uninterpretedOptionBuilder_ == null) { 19989 20664 return uninterpretedOption_.size(); … … 19999 20674 * </pre> 20000 20675 */ 20001 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 20676 @Override 20677 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 20002 20678 if (uninterpretedOptionBuilder_ == null) { 20003 20679 return uninterpretedOption_.get(index); … … 20193 20869 * </pre> 20194 20870 */ 20195 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 20871 @Override 20872 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 20196 20873 int index) { 20197 20874 if (uninterpretedOptionBuilder_ == null) { … … 20207 20884 * </pre> 20208 20885 */ 20209 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 20886 @Override 20887 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 20210 20888 getUninterpretedOptionOrBuilderList() { 20211 20889 if (uninterpretedOptionBuilder_ != null) { … … 20245 20923 * </pre> 20246 20924 */ 20247 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 20925 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 20248 20926 getUninterpretedOptionBuilderList() { 20249 20927 return getUninterpretedOptionFieldBuilder().getBuilderList(); 20250 20928 } 20251 20929 private com.google.protobuf.RepeatedFieldBuilder< 20252 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 20930 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 20253 20931 getUninterpretedOptionFieldBuilder() { 20254 20932 if (uninterpretedOptionBuilder_ == null) { … … 20328 21006 * </pre> 20329 21007 */ 20330 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 21008 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 20331 21009 getUninterpretedOptionList(); 20332 21010 /** … … 20353 21031 * </pre> 20354 21032 */ 20355 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 21033 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 20356 21034 getUninterpretedOptionOrBuilderList(); 20357 21035 /** … … 20385 21063 } 20386 21064 20387 public EnumOptions getDefaultInstanceForType() { 21065 @Override 21066 public EnumOptions getDefaultInstanceForType() { 20388 21067 return defaultInstance; 20389 21068 } … … 20456 21135 } 20457 21136 20458 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 21137 @Override 21138 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 20459 21139 internalGetFieldAccessorTable() { 20460 21140 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumOptions_fieldAccessorTable … … 20465 21145 public static com.google.protobuf.Parser<EnumOptions> PARSER = 20466 21146 new com.google.protobuf.AbstractParser<EnumOptions>() { 20467 public EnumOptions parsePartialFrom( 21147 @Override 21148 public EnumOptions parsePartialFrom( 20468 21149 com.google.protobuf.CodedInputStream input, 20469 21150 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 20489 21170 * </pre> 20490 21171 */ 20491 public boolean hasAllowAlias() { 21172 @Override 21173 public boolean hasAllowAlias() { 20492 21174 return ((bitField0_ & 0x00000001) == 0x00000001); 20493 21175 } … … 20500 21182 * </pre> 20501 21183 */ 20502 public boolean getAllowAlias() { 21184 @Override 21185 public boolean getAllowAlias() { 20503 21186 return allowAlias_; 20504 21187 } … … 20516 21199 * </pre> 20517 21200 */ 20518 public boolean hasDeprecated() { 21201 @Override 21202 public boolean hasDeprecated() { 20519 21203 return ((bitField0_ & 0x00000002) == 0x00000002); 20520 21204 } … … 20529 21213 * </pre> 20530 21214 */ 20531 public boolean getDeprecated() { 21215 @Override 21216 public boolean getDeprecated() { 20532 21217 return deprecated_; 20533 21218 } … … 20542 21227 * </pre> 20543 21228 */ 20544 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 21229 @Override 21230 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 20545 21231 return uninterpretedOption_; 20546 21232 } … … 20552 21238 * </pre> 20553 21239 */ 20554 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 21240 @Override 21241 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 20555 21242 getUninterpretedOptionOrBuilderList() { 20556 21243 return uninterpretedOption_; … … 20563 21250 * </pre> 20564 21251 */ 20565 public int getUninterpretedOptionCount() { 21252 @Override 21253 public int getUninterpretedOptionCount() { 20566 21254 return uninterpretedOption_.size(); 20567 21255 } … … 20573 21261 * </pre> 20574 21262 */ 20575 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 21263 @Override 21264 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 20576 21265 return uninterpretedOption_.get(index); 20577 21266 } … … 20583 21272 * </pre> 20584 21273 */ 20585 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 21274 @Override 21275 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 20586 21276 int index) { 20587 21277 return uninterpretedOption_.get(index); … … 20594 21284 } 20595 21285 private byte memoizedIsInitialized = -1; 20596 public final boolean isInitialized() { 21286 @Override 21287 public final boolean isInitialized() { 20597 21288 byte isInitialized = memoizedIsInitialized; 20598 21289 if (isInitialized == 1) return true; … … 20613 21304 } 20614 21305 20615 public void writeTo(com.google.protobuf.CodedOutputStream output) 21306 @Override 21307 public void writeTo(com.google.protobuf.CodedOutputStream output) 20616 21308 throws java.io.IOException { 20617 21309 getSerializedSize(); … … 20633 21325 20634 21326 private int memoizedSerializedSize = -1; 20635 public int getSerializedSize() { 21327 @Override 21328 public int getSerializedSize() { 20636 21329 int size = memoizedSerializedSize; 20637 21330 if (size != -1) return size; … … 20717 21410 20718 21411 public static Builder newBuilder() { return Builder.create(); } 20719 public Builder newBuilderForType() { return newBuilder(); } 21412 @Override 21413 public Builder newBuilderForType() { return newBuilder(); } 20720 21414 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.EnumOptions prototype) { 20721 21415 return newBuilder().mergeFrom(prototype); 20722 21416 } 20723 public Builder toBuilder() { return newBuilder(this); } 21417 @Override 21418 public Builder toBuilder() { return newBuilder(this); } 20724 21419 20725 21420 @java.lang.Override … … 20742 21437 } 20743 21438 20744 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 21439 @Override 21440 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 20745 21441 internalGetFieldAccessorTable() { 20746 21442 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumOptions_fieldAccessorTable … … 20768 21464 } 20769 21465 20770 public Builder clear() { 21466 @Override 21467 public Builder clear() { 20771 21468 super.clear(); 20772 21469 allowAlias_ = false; … … 20783 21480 } 20784 21481 20785 public Builder clone() { 21482 @Override 21483 public Builder clone() { 20786 21484 return create().mergeFrom(buildPartial()); 20787 21485 } 20788 21486 20789 public com.google.protobuf.Descriptors.Descriptor 21487 @Override 21488 public com.google.protobuf.Descriptors.Descriptor 20790 21489 getDescriptorForType() { 20791 21490 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumOptions_descriptor; 20792 21491 } 20793 21492 20794 public com.google.protobuf.DescriptorProtos.EnumOptions getDefaultInstanceForType() { 21493 @Override 21494 public com.google.protobuf.DescriptorProtos.EnumOptions getDefaultInstanceForType() { 20795 21495 return com.google.protobuf.DescriptorProtos.EnumOptions.getDefaultInstance(); 20796 21496 } 20797 21497 20798 public com.google.protobuf.DescriptorProtos.EnumOptions build() { 21498 @Override 21499 public com.google.protobuf.DescriptorProtos.EnumOptions build() { 20799 21500 com.google.protobuf.DescriptorProtos.EnumOptions result = buildPartial(); 20800 21501 if (!result.isInitialized()) { … … 20804 21505 } 20805 21506 20806 public com.google.protobuf.DescriptorProtos.EnumOptions buildPartial() { 21507 @Override 21508 public com.google.protobuf.DescriptorProtos.EnumOptions buildPartial() { 20807 21509 com.google.protobuf.DescriptorProtos.EnumOptions result = new com.google.protobuf.DescriptorProtos.EnumOptions(this); 20808 21510 int from_bitField0_ = bitField0_; … … 20830 21532 } 20831 21533 20832 public Builder mergeFrom(com.google.protobuf.Message other) { 21534 @Override 21535 public Builder mergeFrom(com.google.protobuf.Message other) { 20833 21536 if (other instanceof com.google.protobuf.DescriptorProtos.EnumOptions) { 20834 21537 return mergeFrom((com.google.protobuf.DescriptorProtos.EnumOptions)other); … … 20865 21568 uninterpretedOption_ = other.uninterpretedOption_; 20866 21569 bitField0_ = (bitField0_ & ~0x00000004); 20867 uninterpretedOptionBuilder_ = 21570 uninterpretedOptionBuilder_ = 20868 21571 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 20869 21572 getUninterpretedOptionFieldBuilder() : null; … … 20878 21581 } 20879 21582 20880 public final boolean isInitialized() { 21583 @Override 21584 public final boolean isInitialized() { 20881 21585 for (int i = 0; i < getUninterpretedOptionCount(); i++) { 20882 21586 if (!getUninterpretedOption(i).isInitialized()) { 20883 21587 20884 21588 return false; 20885 21589 } 20886 21590 } 20887 21591 if (!extensionsAreInitialized()) { 20888 21592 20889 21593 return false; 20890 21594 } … … 20892 21596 } 20893 21597 20894 public Builder mergeFrom( 21598 @Override 21599 public Builder mergeFrom( 20895 21600 com.google.protobuf.CodedInputStream input, 20896 21601 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 20920 21625 * </pre> 20921 21626 */ 20922 public boolean hasAllowAlias() { 21627 @Override 21628 public boolean hasAllowAlias() { 20923 21629 return ((bitField0_ & 0x00000001) == 0x00000001); 20924 21630 } … … 20931 21637 * </pre> 20932 21638 */ 20933 public boolean getAllowAlias() { 21639 @Override 21640 public boolean getAllowAlias() { 20934 21641 return allowAlias_; 20935 21642 } … … 20974 21681 * </pre> 20975 21682 */ 20976 public boolean hasDeprecated() { 21683 @Override 21684 public boolean hasDeprecated() { 20977 21685 return ((bitField0_ & 0x00000002) == 0x00000002); 20978 21686 } … … 20987 21695 * </pre> 20988 21696 */ 20989 public boolean getDeprecated() { 21697 @Override 21698 public boolean getDeprecated() { 20990 21699 return deprecated_; 20991 21700 } … … 21042 21751 * </pre> 21043 21752 */ 21044 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 21753 @Override 21754 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 21045 21755 if (uninterpretedOptionBuilder_ == null) { 21046 21756 return java.util.Collections.unmodifiableList(uninterpretedOption_); … … 21056 21766 * </pre> 21057 21767 */ 21058 public int getUninterpretedOptionCount() { 21768 @Override 21769 public int getUninterpretedOptionCount() { 21059 21770 if (uninterpretedOptionBuilder_ == null) { 21060 21771 return uninterpretedOption_.size(); … … 21070 21781 * </pre> 21071 21782 */ 21072 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 21783 @Override 21784 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 21073 21785 if (uninterpretedOptionBuilder_ == null) { 21074 21786 return uninterpretedOption_.get(index); … … 21264 21976 * </pre> 21265 21977 */ 21266 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 21978 @Override 21979 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 21267 21980 int index) { 21268 21981 if (uninterpretedOptionBuilder_ == null) { … … 21278 21991 * </pre> 21279 21992 */ 21280 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 21993 @Override 21994 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 21281 21995 getUninterpretedOptionOrBuilderList() { 21282 21996 if (uninterpretedOptionBuilder_ != null) { … … 21316 22030 * </pre> 21317 22031 */ 21318 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 22032 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 21319 22033 getUninterpretedOptionBuilderList() { 21320 22034 return getUninterpretedOptionFieldBuilder().getBuilderList(); 21321 22035 } 21322 22036 private com.google.protobuf.RepeatedFieldBuilder< 21323 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 22037 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 21324 22038 getUninterpretedOptionFieldBuilder() { 21325 22039 if (uninterpretedOptionBuilder_ == null) { … … 21380 22094 * </pre> 21381 22095 */ 21382 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 22096 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 21383 22097 getUninterpretedOptionList(); 21384 22098 /** … … 21405 22119 * </pre> 21406 22120 */ 21407 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 22121 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 21408 22122 getUninterpretedOptionOrBuilderList(); 21409 22123 /** … … 21437 22151 } 21438 22152 21439 public EnumValueOptions getDefaultInstanceForType() { 22153 @Override 22154 public EnumValueOptions getDefaultInstanceForType() { 21440 22155 return defaultInstance; 21441 22156 } … … 21503 22218 } 21504 22219 21505 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 22220 @Override 22221 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 21506 22222 internalGetFieldAccessorTable() { 21507 22223 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumValueOptions_fieldAccessorTable … … 21512 22228 public static com.google.protobuf.Parser<EnumValueOptions> PARSER = 21513 22229 new com.google.protobuf.AbstractParser<EnumValueOptions>() { 21514 public EnumValueOptions parsePartialFrom( 22230 @Override 22231 public EnumValueOptions parsePartialFrom( 21515 22232 com.google.protobuf.CodedInputStream input, 21516 22233 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 21538 22255 * </pre> 21539 22256 */ 21540 public boolean hasDeprecated() { 22257 @Override 22258 public boolean hasDeprecated() { 21541 22259 return ((bitField0_ & 0x00000001) == 0x00000001); 21542 22260 } … … 21551 22269 * </pre> 21552 22270 */ 21553 public boolean getDeprecated() { 22271 @Override 22272 public boolean getDeprecated() { 21554 22273 return deprecated_; 21555 22274 } … … 21564 22283 * </pre> 21565 22284 */ 21566 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 22285 @Override 22286 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 21567 22287 return uninterpretedOption_; 21568 22288 } … … 21574 22294 * </pre> 21575 22295 */ 21576 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 22296 @Override 22297 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 21577 22298 getUninterpretedOptionOrBuilderList() { 21578 22299 return uninterpretedOption_; … … 21585 22306 * </pre> 21586 22307 */ 21587 public int getUninterpretedOptionCount() { 22308 @Override 22309 public int getUninterpretedOptionCount() { 21588 22310 return uninterpretedOption_.size(); 21589 22311 } … … 21595 22317 * </pre> 21596 22318 */ 21597 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 22319 @Override 22320 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 21598 22321 return uninterpretedOption_.get(index); 21599 22322 } … … 21605 22328 * </pre> 21606 22329 */ 21607 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 22330 @Override 22331 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 21608 22332 int index) { 21609 22333 return uninterpretedOption_.get(index); … … 21615 22339 } 21616 22340 private byte memoizedIsInitialized = -1; 21617 public final boolean isInitialized() { 22341 @Override 22342 public final boolean isInitialized() { 21618 22343 byte isInitialized = memoizedIsInitialized; 21619 22344 if (isInitialized == 1) return true; … … 21634 22359 } 21635 22360 21636 public void writeTo(com.google.protobuf.CodedOutputStream output) 22361 @Override 22362 public void writeTo(com.google.protobuf.CodedOutputStream output) 21637 22363 throws java.io.IOException { 21638 22364 getSerializedSize(); … … 21651 22377 21652 22378 private int memoizedSerializedSize = -1; 21653 public int getSerializedSize() { 22379 @Override 22380 public int getSerializedSize() { 21654 22381 int size = memoizedSerializedSize; 21655 22382 if (size != -1) return size; … … 21731 22458 21732 22459 public static Builder newBuilder() { return Builder.create(); } 21733 public Builder newBuilderForType() { return newBuilder(); } 22460 @Override 22461 public Builder newBuilderForType() { return newBuilder(); } 21734 22462 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.EnumValueOptions prototype) { 21735 22463 return newBuilder().mergeFrom(prototype); 21736 22464 } 21737 public Builder toBuilder() { return newBuilder(this); } 22465 @Override 22466 public Builder toBuilder() { return newBuilder(this); } 21738 22467 21739 22468 @java.lang.Override … … 21756 22485 } 21757 22486 21758 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 22487 @Override 22488 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 21759 22489 internalGetFieldAccessorTable() { 21760 22490 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumValueOptions_fieldAccessorTable … … 21782 22512 } 21783 22513 21784 public Builder clear() { 22514 @Override 22515 public Builder clear() { 21785 22516 super.clear(); 21786 22517 deprecated_ = false; … … 21795 22526 } 21796 22527 21797 public Builder clone() { 22528 @Override 22529 public Builder clone() { 21798 22530 return create().mergeFrom(buildPartial()); 21799 22531 } 21800 22532 21801 public com.google.protobuf.Descriptors.Descriptor 22533 @Override 22534 public com.google.protobuf.Descriptors.Descriptor 21802 22535 getDescriptorForType() { 21803 22536 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_EnumValueOptions_descriptor; 21804 22537 } 21805 22538 21806 public com.google.protobuf.DescriptorProtos.EnumValueOptions getDefaultInstanceForType() { 22539 @Override 22540 public com.google.protobuf.DescriptorProtos.EnumValueOptions getDefaultInstanceForType() { 21807 22541 return com.google.protobuf.DescriptorProtos.EnumValueOptions.getDefaultInstance(); 21808 22542 } 21809 22543 21810 public com.google.protobuf.DescriptorProtos.EnumValueOptions build() { 22544 @Override 22545 public com.google.protobuf.DescriptorProtos.EnumValueOptions build() { 21811 22546 com.google.protobuf.DescriptorProtos.EnumValueOptions result = buildPartial(); 21812 22547 if (!result.isInitialized()) { … … 21816 22551 } 21817 22552 21818 public com.google.protobuf.DescriptorProtos.EnumValueOptions buildPartial() { 22553 @Override 22554 public com.google.protobuf.DescriptorProtos.EnumValueOptions buildPartial() { 21819 22555 com.google.protobuf.DescriptorProtos.EnumValueOptions result = new com.google.protobuf.DescriptorProtos.EnumValueOptions(this); 21820 22556 int from_bitField0_ = bitField0_; … … 21838 22574 } 21839 22575 21840 public Builder mergeFrom(com.google.protobuf.Message other) { 22576 @Override 22577 public Builder mergeFrom(com.google.protobuf.Message other) { 21841 22578 if (other instanceof com.google.protobuf.DescriptorProtos.EnumValueOptions) { 21842 22579 return mergeFrom((com.google.protobuf.DescriptorProtos.EnumValueOptions)other); … … 21870 22607 uninterpretedOption_ = other.uninterpretedOption_; 21871 22608 bitField0_ = (bitField0_ & ~0x00000002); 21872 uninterpretedOptionBuilder_ = 22609 uninterpretedOptionBuilder_ = 21873 22610 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 21874 22611 getUninterpretedOptionFieldBuilder() : null; … … 21883 22620 } 21884 22621 21885 public final boolean isInitialized() { 22622 @Override 22623 public final boolean isInitialized() { 21886 22624 for (int i = 0; i < getUninterpretedOptionCount(); i++) { 21887 22625 if (!getUninterpretedOption(i).isInitialized()) { 21888 22626 21889 22627 return false; 21890 22628 } 21891 22629 } 21892 22630 if (!extensionsAreInitialized()) { 21893 22631 21894 22632 return false; 21895 22633 } … … 21897 22635 } 21898 22636 21899 public Builder mergeFrom( 22637 @Override 22638 public Builder mergeFrom( 21900 22639 com.google.protobuf.CodedInputStream input, 21901 22640 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 21927 22666 * </pre> 21928 22667 */ 21929 public boolean hasDeprecated() { 22668 @Override 22669 public boolean hasDeprecated() { 21930 22670 return ((bitField0_ & 0x00000001) == 0x00000001); 21931 22671 } … … 21940 22680 * </pre> 21941 22681 */ 21942 public boolean getDeprecated() { 22682 @Override 22683 public boolean getDeprecated() { 21943 22684 return deprecated_; 21944 22685 } … … 21995 22736 * </pre> 21996 22737 */ 21997 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 22738 @Override 22739 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 21998 22740 if (uninterpretedOptionBuilder_ == null) { 21999 22741 return java.util.Collections.unmodifiableList(uninterpretedOption_); … … 22009 22751 * </pre> 22010 22752 */ 22011 public int getUninterpretedOptionCount() { 22753 @Override 22754 public int getUninterpretedOptionCount() { 22012 22755 if (uninterpretedOptionBuilder_ == null) { 22013 22756 return uninterpretedOption_.size(); … … 22023 22766 * </pre> 22024 22767 */ 22025 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 22768 @Override 22769 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 22026 22770 if (uninterpretedOptionBuilder_ == null) { 22027 22771 return uninterpretedOption_.get(index); … … 22217 22961 * </pre> 22218 22962 */ 22219 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 22963 @Override 22964 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 22220 22965 int index) { 22221 22966 if (uninterpretedOptionBuilder_ == null) { … … 22231 22976 * </pre> 22232 22977 */ 22233 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 22978 @Override 22979 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 22234 22980 getUninterpretedOptionOrBuilderList() { 22235 22981 if (uninterpretedOptionBuilder_ != null) { … … 22269 23015 * </pre> 22270 23016 */ 22271 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 23017 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 22272 23018 getUninterpretedOptionBuilderList() { 22273 23019 return getUninterpretedOptionFieldBuilder().getBuilderList(); 22274 23020 } 22275 23021 private com.google.protobuf.RepeatedFieldBuilder< 22276 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 23022 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 22277 23023 getUninterpretedOptionFieldBuilder() { 22278 23024 if (uninterpretedOptionBuilder_ == null) { … … 22333 23079 * </pre> 22334 23080 */ 22335 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 23081 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 22336 23082 getUninterpretedOptionList(); 22337 23083 /** … … 22358 23104 * </pre> 22359 23105 */ 22360 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 23106 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 22361 23107 getUninterpretedOptionOrBuilderList(); 22362 23108 /** … … 22390 23136 } 22391 23137 22392 public ServiceOptions getDefaultInstanceForType() { 23138 @Override 23139 public ServiceOptions getDefaultInstanceForType() { 22393 23140 return defaultInstance; 22394 23141 } … … 22456 23203 } 22457 23204 22458 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 23205 @Override 23206 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 22459 23207 internalGetFieldAccessorTable() { 22460 23208 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_ServiceOptions_fieldAccessorTable … … 22465 23213 public static com.google.protobuf.Parser<ServiceOptions> PARSER = 22466 23214 new com.google.protobuf.AbstractParser<ServiceOptions>() { 22467 public ServiceOptions parsePartialFrom( 23215 @Override 23216 public ServiceOptions parsePartialFrom( 22468 23217 com.google.protobuf.CodedInputStream input, 22469 23218 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 22491 23240 * </pre> 22492 23241 */ 22493 public boolean hasDeprecated() { 23242 @Override 23243 public boolean hasDeprecated() { 22494 23244 return ((bitField0_ & 0x00000001) == 0x00000001); 22495 23245 } … … 22504 23254 * </pre> 22505 23255 */ 22506 public boolean getDeprecated() { 23256 @Override 23257 public boolean getDeprecated() { 22507 23258 return deprecated_; 22508 23259 } … … 22517 23268 * </pre> 22518 23269 */ 22519 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 23270 @Override 23271 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 22520 23272 return uninterpretedOption_; 22521 23273 } … … 22527 23279 * </pre> 22528 23280 */ 22529 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 23281 @Override 23282 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 22530 23283 getUninterpretedOptionOrBuilderList() { 22531 23284 return uninterpretedOption_; … … 22538 23291 * </pre> 22539 23292 */ 22540 public int getUninterpretedOptionCount() { 23293 @Override 23294 public int getUninterpretedOptionCount() { 22541 23295 return uninterpretedOption_.size(); 22542 23296 } … … 22548 23302 * </pre> 22549 23303 */ 22550 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 23304 @Override 23305 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 22551 23306 return uninterpretedOption_.get(index); 22552 23307 } … … 22558 23313 * </pre> 22559 23314 */ 22560 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 23315 @Override 23316 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 22561 23317 int index) { 22562 23318 return uninterpretedOption_.get(index); … … 22568 23324 } 22569 23325 private byte memoizedIsInitialized = -1; 22570 public final boolean isInitialized() { 23326 @Override 23327 public final boolean isInitialized() { 22571 23328 byte isInitialized = memoizedIsInitialized; 22572 23329 if (isInitialized == 1) return true; … … 22587 23344 } 22588 23345 22589 public void writeTo(com.google.protobuf.CodedOutputStream output) 23346 @Override 23347 public void writeTo(com.google.protobuf.CodedOutputStream output) 22590 23348 throws java.io.IOException { 22591 23349 getSerializedSize(); … … 22604 23362 22605 23363 private int memoizedSerializedSize = -1; 22606 public int getSerializedSize() { 23364 @Override 23365 public int getSerializedSize() { 22607 23366 int size = memoizedSerializedSize; 22608 23367 if (size != -1) return size; … … 22684 23443 22685 23444 public static Builder newBuilder() { return Builder.create(); } 22686 public Builder newBuilderForType() { return newBuilder(); } 23445 @Override 23446 public Builder newBuilderForType() { return newBuilder(); } 22687 23447 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.ServiceOptions prototype) { 22688 23448 return newBuilder().mergeFrom(prototype); 22689 23449 } 22690 public Builder toBuilder() { return newBuilder(this); } 23450 @Override 23451 public Builder toBuilder() { return newBuilder(this); } 22691 23452 22692 23453 @java.lang.Override … … 22709 23470 } 22710 23471 22711 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 23472 @Override 23473 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 22712 23474 internalGetFieldAccessorTable() { 22713 23475 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_ServiceOptions_fieldAccessorTable … … 22735 23497 } 22736 23498 22737 public Builder clear() { 23499 @Override 23500 public Builder clear() { 22738 23501 super.clear(); 22739 23502 deprecated_ = false; … … 22748 23511 } 22749 23512 22750 public Builder clone() { 23513 @Override 23514 public Builder clone() { 22751 23515 return create().mergeFrom(buildPartial()); 22752 23516 } 22753 23517 22754 public com.google.protobuf.Descriptors.Descriptor 23518 @Override 23519 public com.google.protobuf.Descriptors.Descriptor 22755 23520 getDescriptorForType() { 22756 23521 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_ServiceOptions_descriptor; 22757 23522 } 22758 23523 22759 public com.google.protobuf.DescriptorProtos.ServiceOptions getDefaultInstanceForType() { 23524 @Override 23525 public com.google.protobuf.DescriptorProtos.ServiceOptions getDefaultInstanceForType() { 22760 23526 return com.google.protobuf.DescriptorProtos.ServiceOptions.getDefaultInstance(); 22761 23527 } 22762 23528 22763 public com.google.protobuf.DescriptorProtos.ServiceOptions build() { 23529 @Override 23530 public com.google.protobuf.DescriptorProtos.ServiceOptions build() { 22764 23531 com.google.protobuf.DescriptorProtos.ServiceOptions result = buildPartial(); 22765 23532 if (!result.isInitialized()) { … … 22769 23536 } 22770 23537 22771 public com.google.protobuf.DescriptorProtos.ServiceOptions buildPartial() { 23538 @Override 23539 public com.google.protobuf.DescriptorProtos.ServiceOptions buildPartial() { 22772 23540 com.google.protobuf.DescriptorProtos.ServiceOptions result = new com.google.protobuf.DescriptorProtos.ServiceOptions(this); 22773 23541 int from_bitField0_ = bitField0_; … … 22791 23559 } 22792 23560 22793 public Builder mergeFrom(com.google.protobuf.Message other) { 23561 @Override 23562 public Builder mergeFrom(com.google.protobuf.Message other) { 22794 23563 if (other instanceof com.google.protobuf.DescriptorProtos.ServiceOptions) { 22795 23564 return mergeFrom((com.google.protobuf.DescriptorProtos.ServiceOptions)other); … … 22823 23592 uninterpretedOption_ = other.uninterpretedOption_; 22824 23593 bitField0_ = (bitField0_ & ~0x00000002); 22825 uninterpretedOptionBuilder_ = 23594 uninterpretedOptionBuilder_ = 22826 23595 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 22827 23596 getUninterpretedOptionFieldBuilder() : null; … … 22836 23605 } 22837 23606 22838 public final boolean isInitialized() { 23607 @Override 23608 public final boolean isInitialized() { 22839 23609 for (int i = 0; i < getUninterpretedOptionCount(); i++) { 22840 23610 if (!getUninterpretedOption(i).isInitialized()) { 22841 23611 22842 23612 return false; 22843 23613 } 22844 23614 } 22845 23615 if (!extensionsAreInitialized()) { 22846 23616 22847 23617 return false; 22848 23618 } … … 22850 23620 } 22851 23621 22852 public Builder mergeFrom( 23622 @Override 23623 public Builder mergeFrom( 22853 23624 com.google.protobuf.CodedInputStream input, 22854 23625 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 22880 23651 * </pre> 22881 23652 */ 22882 public boolean hasDeprecated() { 23653 @Override 23654 public boolean hasDeprecated() { 22883 23655 return ((bitField0_ & 0x00000001) == 0x00000001); 22884 23656 } … … 22893 23665 * </pre> 22894 23666 */ 22895 public boolean getDeprecated() { 23667 @Override 23668 public boolean getDeprecated() { 22896 23669 return deprecated_; 22897 23670 } … … 22948 23721 * </pre> 22949 23722 */ 22950 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 23723 @Override 23724 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 22951 23725 if (uninterpretedOptionBuilder_ == null) { 22952 23726 return java.util.Collections.unmodifiableList(uninterpretedOption_); … … 22962 23736 * </pre> 22963 23737 */ 22964 public int getUninterpretedOptionCount() { 23738 @Override 23739 public int getUninterpretedOptionCount() { 22965 23740 if (uninterpretedOptionBuilder_ == null) { 22966 23741 return uninterpretedOption_.size(); … … 22976 23751 * </pre> 22977 23752 */ 22978 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 23753 @Override 23754 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 22979 23755 if (uninterpretedOptionBuilder_ == null) { 22980 23756 return uninterpretedOption_.get(index); … … 23170 23946 * </pre> 23171 23947 */ 23172 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 23948 @Override 23949 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 23173 23950 int index) { 23174 23951 if (uninterpretedOptionBuilder_ == null) { … … 23184 23961 * </pre> 23185 23962 */ 23186 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 23963 @Override 23964 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 23187 23965 getUninterpretedOptionOrBuilderList() { 23188 23966 if (uninterpretedOptionBuilder_ != null) { … … 23222 24000 * </pre> 23223 24001 */ 23224 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 24002 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 23225 24003 getUninterpretedOptionBuilderList() { 23226 24004 return getUninterpretedOptionFieldBuilder().getBuilderList(); 23227 24005 } 23228 24006 private com.google.protobuf.RepeatedFieldBuilder< 23229 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 24007 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 23230 24008 getUninterpretedOptionFieldBuilder() { 23231 24009 if (uninterpretedOptionBuilder_ == null) { … … 23286 24064 * </pre> 23287 24065 */ 23288 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 24066 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> 23289 24067 getUninterpretedOptionList(); 23290 24068 /** … … 23311 24089 * </pre> 23312 24090 */ 23313 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 24091 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 23314 24092 getUninterpretedOptionOrBuilderList(); 23315 24093 /** … … 23343 24121 } 23344 24122 23345 public MethodOptions getDefaultInstanceForType() { 24123 @Override 24124 public MethodOptions getDefaultInstanceForType() { 23346 24125 return defaultInstance; 23347 24126 } … … 23409 24188 } 23410 24189 23411 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 24190 @Override 24191 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 23412 24192 internalGetFieldAccessorTable() { 23413 24193 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_MethodOptions_fieldAccessorTable … … 23418 24198 public static com.google.protobuf.Parser<MethodOptions> PARSER = 23419 24199 new com.google.protobuf.AbstractParser<MethodOptions>() { 23420 public MethodOptions parsePartialFrom( 24200 @Override 24201 public MethodOptions parsePartialFrom( 23421 24202 com.google.protobuf.CodedInputStream input, 23422 24203 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 23444 24225 * </pre> 23445 24226 */ 23446 public boolean hasDeprecated() { 24227 @Override 24228 public boolean hasDeprecated() { 23447 24229 return ((bitField0_ & 0x00000001) == 0x00000001); 23448 24230 } … … 23457 24239 * </pre> 23458 24240 */ 23459 public boolean getDeprecated() { 24241 @Override 24242 public boolean getDeprecated() { 23460 24243 return deprecated_; 23461 24244 } … … 23470 24253 * </pre> 23471 24254 */ 23472 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 24255 @Override 24256 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 23473 24257 return uninterpretedOption_; 23474 24258 } … … 23480 24264 * </pre> 23481 24265 */ 23482 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 24266 @Override 24267 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 23483 24268 getUninterpretedOptionOrBuilderList() { 23484 24269 return uninterpretedOption_; … … 23491 24276 * </pre> 23492 24277 */ 23493 public int getUninterpretedOptionCount() { 24278 @Override 24279 public int getUninterpretedOptionCount() { 23494 24280 return uninterpretedOption_.size(); 23495 24281 } … … 23501 24287 * </pre> 23502 24288 */ 23503 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 24289 @Override 24290 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 23504 24291 return uninterpretedOption_.get(index); 23505 24292 } … … 23511 24298 * </pre> 23512 24299 */ 23513 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 24300 @Override 24301 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 23514 24302 int index) { 23515 24303 return uninterpretedOption_.get(index); … … 23521 24309 } 23522 24310 private byte memoizedIsInitialized = -1; 23523 public final boolean isInitialized() { 24311 @Override 24312 public final boolean isInitialized() { 23524 24313 byte isInitialized = memoizedIsInitialized; 23525 24314 if (isInitialized == 1) return true; … … 23540 24329 } 23541 24330 23542 public void writeTo(com.google.protobuf.CodedOutputStream output) 24331 @Override 24332 public void writeTo(com.google.protobuf.CodedOutputStream output) 23543 24333 throws java.io.IOException { 23544 24334 getSerializedSize(); … … 23557 24347 23558 24348 private int memoizedSerializedSize = -1; 23559 public int getSerializedSize() { 24349 @Override 24350 public int getSerializedSize() { 23560 24351 int size = memoizedSerializedSize; 23561 24352 if (size != -1) return size; … … 23637 24428 23638 24429 public static Builder newBuilder() { return Builder.create(); } 23639 public Builder newBuilderForType() { return newBuilder(); } 24430 @Override 24431 public Builder newBuilderForType() { return newBuilder(); } 23640 24432 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.MethodOptions prototype) { 23641 24433 return newBuilder().mergeFrom(prototype); 23642 24434 } 23643 public Builder toBuilder() { return newBuilder(this); } 24435 @Override 24436 public Builder toBuilder() { return newBuilder(this); } 23644 24437 23645 24438 @java.lang.Override … … 23662 24455 } 23663 24456 23664 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 24457 @Override 24458 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 23665 24459 internalGetFieldAccessorTable() { 23666 24460 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_MethodOptions_fieldAccessorTable … … 23688 24482 } 23689 24483 23690 public Builder clear() { 24484 @Override 24485 public Builder clear() { 23691 24486 super.clear(); 23692 24487 deprecated_ = false; … … 23701 24496 } 23702 24497 23703 public Builder clone() { 24498 @Override 24499 public Builder clone() { 23704 24500 return create().mergeFrom(buildPartial()); 23705 24501 } 23706 24502 23707 public com.google.protobuf.Descriptors.Descriptor 24503 @Override 24504 public com.google.protobuf.Descriptors.Descriptor 23708 24505 getDescriptorForType() { 23709 24506 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_MethodOptions_descriptor; 23710 24507 } 23711 24508 23712 public com.google.protobuf.DescriptorProtos.MethodOptions getDefaultInstanceForType() { 24509 @Override 24510 public com.google.protobuf.DescriptorProtos.MethodOptions getDefaultInstanceForType() { 23713 24511 return com.google.protobuf.DescriptorProtos.MethodOptions.getDefaultInstance(); 23714 24512 } 23715 24513 23716 public com.google.protobuf.DescriptorProtos.MethodOptions build() { 24514 @Override 24515 public com.google.protobuf.DescriptorProtos.MethodOptions build() { 23717 24516 com.google.protobuf.DescriptorProtos.MethodOptions result = buildPartial(); 23718 24517 if (!result.isInitialized()) { … … 23722 24521 } 23723 24522 23724 public com.google.protobuf.DescriptorProtos.MethodOptions buildPartial() { 24523 @Override 24524 public com.google.protobuf.DescriptorProtos.MethodOptions buildPartial() { 23725 24525 com.google.protobuf.DescriptorProtos.MethodOptions result = new com.google.protobuf.DescriptorProtos.MethodOptions(this); 23726 24526 int from_bitField0_ = bitField0_; … … 23744 24544 } 23745 24545 23746 public Builder mergeFrom(com.google.protobuf.Message other) { 24546 @Override 24547 public Builder mergeFrom(com.google.protobuf.Message other) { 23747 24548 if (other instanceof com.google.protobuf.DescriptorProtos.MethodOptions) { 23748 24549 return mergeFrom((com.google.protobuf.DescriptorProtos.MethodOptions)other); … … 23776 24577 uninterpretedOption_ = other.uninterpretedOption_; 23777 24578 bitField0_ = (bitField0_ & ~0x00000002); 23778 uninterpretedOptionBuilder_ = 24579 uninterpretedOptionBuilder_ = 23779 24580 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 23780 24581 getUninterpretedOptionFieldBuilder() : null; … … 23789 24590 } 23790 24591 23791 public final boolean isInitialized() { 24592 @Override 24593 public final boolean isInitialized() { 23792 24594 for (int i = 0; i < getUninterpretedOptionCount(); i++) { 23793 24595 if (!getUninterpretedOption(i).isInitialized()) { 23794 24596 23795 24597 return false; 23796 24598 } 23797 24599 } 23798 24600 if (!extensionsAreInitialized()) { 23799 24601 23800 24602 return false; 23801 24603 } … … 23803 24605 } 23804 24606 23805 public Builder mergeFrom( 24607 @Override 24608 public Builder mergeFrom( 23806 24609 com.google.protobuf.CodedInputStream input, 23807 24610 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 23833 24636 * </pre> 23834 24637 */ 23835 public boolean hasDeprecated() { 24638 @Override 24639 public boolean hasDeprecated() { 23836 24640 return ((bitField0_ & 0x00000001) == 0x00000001); 23837 24641 } … … 23846 24650 * </pre> 23847 24651 */ 23848 public boolean getDeprecated() { 24652 @Override 24653 public boolean getDeprecated() { 23849 24654 return deprecated_; 23850 24655 } … … 23901 24706 * </pre> 23902 24707 */ 23903 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 24708 @Override 24709 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption> getUninterpretedOptionList() { 23904 24710 if (uninterpretedOptionBuilder_ == null) { 23905 24711 return java.util.Collections.unmodifiableList(uninterpretedOption_); … … 23915 24721 * </pre> 23916 24722 */ 23917 public int getUninterpretedOptionCount() { 24723 @Override 24724 public int getUninterpretedOptionCount() { 23918 24725 if (uninterpretedOptionBuilder_ == null) { 23919 24726 return uninterpretedOption_.size(); … … 23929 24736 * </pre> 23930 24737 */ 23931 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 24738 @Override 24739 public com.google.protobuf.DescriptorProtos.UninterpretedOption getUninterpretedOption(int index) { 23932 24740 if (uninterpretedOptionBuilder_ == null) { 23933 24741 return uninterpretedOption_.get(index); … … 24123 24931 * </pre> 24124 24932 */ 24125 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 24933 @Override 24934 public com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder getUninterpretedOptionOrBuilder( 24126 24935 int index) { 24127 24936 if (uninterpretedOptionBuilder_ == null) { … … 24137 24946 * </pre> 24138 24947 */ 24139 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 24948 @Override 24949 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 24140 24950 getUninterpretedOptionOrBuilderList() { 24141 24951 if (uninterpretedOptionBuilder_ != null) { … … 24175 24985 * </pre> 24176 24986 */ 24177 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 24987 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder> 24178 24988 getUninterpretedOptionBuilderList() { 24179 24989 return getUninterpretedOptionFieldBuilder().getBuilderList(); 24180 24990 } 24181 24991 private com.google.protobuf.RepeatedFieldBuilder< 24182 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 24992 com.google.protobuf.DescriptorProtos.UninterpretedOption, com.google.protobuf.DescriptorProtos.UninterpretedOption.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOptionOrBuilder> 24183 24993 getUninterpretedOptionFieldBuilder() { 24184 24994 if (uninterpretedOptionBuilder_ == null) { … … 24211 25021 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 24212 25022 */ 24213 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart> 25023 java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart> 24214 25024 getNameList(); 24215 25025 /** … … 24224 25034 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 24225 25035 */ 24226 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder> 25036 java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder> 24227 25037 getNameOrBuilderList(); 24228 25038 /** … … 24339 25149 } 24340 25150 24341 public UninterpretedOption getDefaultInstanceForType() { 25151 @Override 25152 public UninterpretedOption getDefaultInstanceForType() { 24342 25153 return defaultInstance; 24343 25154 } … … 24432 25243 } 24433 25244 24434 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 25245 @Override 25246 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 24435 25247 internalGetFieldAccessorTable() { 24436 25248 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_UninterpretedOption_fieldAccessorTable … … 24441 25253 public static com.google.protobuf.Parser<UninterpretedOption> PARSER = 24442 25254 new com.google.protobuf.AbstractParser<UninterpretedOption>() { 24443 public UninterpretedOption parsePartialFrom( 25255 @Override 25256 public UninterpretedOption parsePartialFrom( 24444 25257 com.google.protobuf.CodedInputStream input, 24445 25258 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 24508 25321 } 24509 25322 24510 public NamePart getDefaultInstanceForType() { 25323 @Override 25324 public NamePart getDefaultInstanceForType() { 24511 25325 return defaultInstance; 24512 25326 } … … 24569 25383 } 24570 25384 24571 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 25385 @Override 25386 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 24572 25387 internalGetFieldAccessorTable() { 24573 25388 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_UninterpretedOption_NamePart_fieldAccessorTable … … 24578 25393 public static com.google.protobuf.Parser<NamePart> PARSER = 24579 25394 new com.google.protobuf.AbstractParser<NamePart>() { 24580 public NamePart parsePartialFrom( 25395 @Override 25396 public NamePart parsePartialFrom( 24581 25397 com.google.protobuf.CodedInputStream input, 24582 25398 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 24597 25413 * <code>required string name_part = 1;</code> 24598 25414 */ 24599 public boolean hasNamePart() { 25415 @Override 25416 public boolean hasNamePart() { 24600 25417 return ((bitField0_ & 0x00000001) == 0x00000001); 24601 25418 } … … 24603 25420 * <code>required string name_part = 1;</code> 24604 25421 */ 24605 public java.lang.String getNamePart() { 25422 @Override 25423 public java.lang.String getNamePart() { 24606 25424 java.lang.Object ref = namePart_; 24607 25425 if (ref instanceof java.lang.String) { 24608 25426 return (java.lang.String) ref; 24609 25427 } else { 24610 com.google.protobuf.ByteString bs = 25428 com.google.protobuf.ByteString bs = 24611 25429 (com.google.protobuf.ByteString) ref; 24612 25430 java.lang.String s = bs.toStringUtf8(); … … 24620 25438 * <code>required string name_part = 1;</code> 24621 25439 */ 24622 public com.google.protobuf.ByteString 25440 @Override 25441 public com.google.protobuf.ByteString 24623 25442 getNamePartBytes() { 24624 25443 java.lang.Object ref = namePart_; 24625 25444 if (ref instanceof java.lang.String) { 24626 com.google.protobuf.ByteString b = 25445 com.google.protobuf.ByteString b = 24627 25446 com.google.protobuf.ByteString.copyFromUtf8( 24628 25447 (java.lang.String) ref); … … 24639 25458 * <code>required bool is_extension = 2;</code> 24640 25459 */ 24641 public boolean hasIsExtension() { 25460 @Override 25461 public boolean hasIsExtension() { 24642 25462 return ((bitField0_ & 0x00000002) == 0x00000002); 24643 25463 } … … 24645 25465 * <code>required bool is_extension = 2;</code> 24646 25466 */ 24647 public boolean getIsExtension() { 25467 @Override 25468 public boolean getIsExtension() { 24648 25469 return isExtension_; 24649 25470 } … … 24654 25475 } 24655 25476 private byte memoizedIsInitialized = -1; 24656 public final boolean isInitialized() { 25477 @Override 25478 public final boolean isInitialized() { 24657 25479 byte isInitialized = memoizedIsInitialized; 24658 25480 if (isInitialized == 1) return true; … … 24671 25493 } 24672 25494 24673 public void writeTo(com.google.protobuf.CodedOutputStream output) 25495 @Override 25496 public void writeTo(com.google.protobuf.CodedOutputStream output) 24674 25497 throws java.io.IOException { 24675 25498 getSerializedSize(); … … 24684 25507 24685 25508 private int memoizedSerializedSize = -1; 24686 public int getSerializedSize() { 25509 @Override 25510 public int getSerializedSize() { 24687 25511 int size = memoizedSerializedSize; 24688 25512 if (size != -1) return size; … … 24763 25587 24764 25588 public static Builder newBuilder() { return Builder.create(); } 24765 public Builder newBuilderForType() { return newBuilder(); } 25589 @Override 25590 public Builder newBuilderForType() { return newBuilder(); } 24766 25591 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart prototype) { 24767 25592 return newBuilder().mergeFrom(prototype); 24768 25593 } 24769 public Builder toBuilder() { return newBuilder(this); } 25594 @Override 25595 public Builder toBuilder() { return newBuilder(this); } 24770 25596 24771 25597 @java.lang.Override … … 24795 25621 } 24796 25622 24797 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 25623 @Override 25624 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 24798 25625 internalGetFieldAccessorTable() { 24799 25626 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_UninterpretedOption_NamePart_fieldAccessorTable … … 24820 25647 } 24821 25648 24822 public Builder clear() { 25649 @Override 25650 public Builder clear() { 24823 25651 super.clear(); 24824 25652 namePart_ = ""; … … 24829 25657 } 24830 25658 24831 public Builder clone() { 25659 @Override 25660 public Builder clone() { 24832 25661 return create().mergeFrom(buildPartial()); 24833 25662 } 24834 25663 24835 public com.google.protobuf.Descriptors.Descriptor 25664 @Override 25665 public com.google.protobuf.Descriptors.Descriptor 24836 25666 getDescriptorForType() { 24837 25667 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_UninterpretedOption_NamePart_descriptor; 24838 25668 } 24839 25669 24840 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart getDefaultInstanceForType() { 25670 @Override 25671 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart getDefaultInstanceForType() { 24841 25672 return com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart.getDefaultInstance(); 24842 25673 } 24843 25674 24844 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart build() { 25675 @Override 25676 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart build() { 24845 25677 com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart result = buildPartial(); 24846 25678 if (!result.isInitialized()) { … … 24850 25682 } 24851 25683 24852 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart buildPartial() { 25684 @Override 25685 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart buildPartial() { 24853 25686 com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart result = new com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart(this); 24854 25687 int from_bitField0_ = bitField0_; … … 24867 25700 } 24868 25701 24869 public Builder mergeFrom(com.google.protobuf.Message other) { 25702 @Override 25703 public Builder mergeFrom(com.google.protobuf.Message other) { 24870 25704 if (other instanceof com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart) { 24871 25705 return mergeFrom((com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart)other); … … 24890 25724 } 24891 25725 24892 public final boolean isInitialized() { 25726 @Override 25727 public final boolean isInitialized() { 24893 25728 if (!hasNamePart()) { 24894 25729 24895 25730 return false; 24896 25731 } 24897 25732 if (!hasIsExtension()) { 24898 25733 24899 25734 return false; 24900 25735 } … … 24902 25737 } 24903 25738 24904 public Builder mergeFrom( 25739 @Override 25740 public Builder mergeFrom( 24905 25741 com.google.protobuf.CodedInputStream input, 24906 25742 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 24925 25761 * <code>required string name_part = 1;</code> 24926 25762 */ 24927 public boolean hasNamePart() { 25763 @Override 25764 public boolean hasNamePart() { 24928 25765 return ((bitField0_ & 0x00000001) == 0x00000001); 24929 25766 } … … 24931 25768 * <code>required string name_part = 1;</code> 24932 25769 */ 24933 public java.lang.String getNamePart() { 25770 @Override 25771 public java.lang.String getNamePart() { 24934 25772 java.lang.Object ref = namePart_; 24935 25773 if (!(ref instanceof java.lang.String)) { … … 24948 25786 * <code>required string name_part = 1;</code> 24949 25787 */ 24950 public com.google.protobuf.ByteString 25788 @Override 25789 public com.google.protobuf.ByteString 24951 25790 getNamePartBytes() { 24952 25791 java.lang.Object ref = namePart_; 24953 25792 if (ref instanceof String) { 24954 com.google.protobuf.ByteString b = 25793 com.google.protobuf.ByteString b = 24955 25794 com.google.protobuf.ByteString.copyFromUtf8( 24956 25795 (java.lang.String) ref); … … 25001 25840 * <code>required bool is_extension = 2;</code> 25002 25841 */ 25003 public boolean hasIsExtension() { 25842 @Override 25843 public boolean hasIsExtension() { 25004 25844 return ((bitField0_ & 0x00000002) == 0x00000002); 25005 25845 } … … 25007 25847 * <code>required bool is_extension = 2;</code> 25008 25848 */ 25009 public boolean getIsExtension() { 25849 @Override 25850 public boolean getIsExtension() { 25010 25851 return isExtension_; 25011 25852 } … … 25046 25887 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 25047 25888 */ 25048 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart> getNameList() { 25889 @Override 25890 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart> getNameList() { 25049 25891 return name_; 25050 25892 } … … 25052 25894 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 25053 25895 */ 25054 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder> 25896 @Override 25897 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder> 25055 25898 getNameOrBuilderList() { 25056 25899 return name_; … … 25059 25902 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 25060 25903 */ 25061 public int getNameCount() { 25904 @Override 25905 public int getNameCount() { 25062 25906 return name_.size(); 25063 25907 } … … 25065 25909 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 25066 25910 */ 25067 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart getName(int index) { 25911 @Override 25912 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart getName(int index) { 25068 25913 return name_.get(index); 25069 25914 } … … 25071 25916 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 25072 25917 */ 25073 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder getNameOrBuilder( 25918 @Override 25919 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder getNameOrBuilder( 25074 25920 int index) { 25075 25921 return name_.get(index); … … 25086 25932 * </pre> 25087 25933 */ 25088 public boolean hasIdentifierValue() { 25934 @Override 25935 public boolean hasIdentifierValue() { 25089 25936 return ((bitField0_ & 0x00000001) == 0x00000001); 25090 25937 } … … 25097 25944 * </pre> 25098 25945 */ 25099 public java.lang.String getIdentifierValue() { 25946 @Override 25947 public java.lang.String getIdentifierValue() { 25100 25948 java.lang.Object ref = identifierValue_; 25101 25949 if (ref instanceof java.lang.String) { 25102 25950 return (java.lang.String) ref; 25103 25951 } else { 25104 com.google.protobuf.ByteString bs = 25952 com.google.protobuf.ByteString bs = 25105 25953 (com.google.protobuf.ByteString) ref; 25106 25954 java.lang.String s = bs.toStringUtf8(); … … 25119 25967 * </pre> 25120 25968 */ 25121 public com.google.protobuf.ByteString 25969 @Override 25970 public com.google.protobuf.ByteString 25122 25971 getIdentifierValueBytes() { 25123 25972 java.lang.Object ref = identifierValue_; 25124 25973 if (ref instanceof java.lang.String) { 25125 com.google.protobuf.ByteString b = 25974 com.google.protobuf.ByteString b = 25126 25975 com.google.protobuf.ByteString.copyFromUtf8( 25127 25976 (java.lang.String) ref); … … 25138 25987 * <code>optional uint64 positive_int_value = 4;</code> 25139 25988 */ 25140 public boolean hasPositiveIntValue() { 25989 @Override 25990 public boolean hasPositiveIntValue() { 25141 25991 return ((bitField0_ & 0x00000002) == 0x00000002); 25142 25992 } … … 25144 25994 * <code>optional uint64 positive_int_value = 4;</code> 25145 25995 */ 25146 public long getPositiveIntValue() { 25996 @Override 25997 public long getPositiveIntValue() { 25147 25998 return positiveIntValue_; 25148 25999 } … … 25153 26004 * <code>optional int64 negative_int_value = 5;</code> 25154 26005 */ 25155 public boolean hasNegativeIntValue() { 26006 @Override 26007 public boolean hasNegativeIntValue() { 25156 26008 return ((bitField0_ & 0x00000004) == 0x00000004); 25157 26009 } … … 25159 26011 * <code>optional int64 negative_int_value = 5;</code> 25160 26012 */ 25161 public long getNegativeIntValue() { 26013 @Override 26014 public long getNegativeIntValue() { 25162 26015 return negativeIntValue_; 25163 26016 } … … 25168 26021 * <code>optional double double_value = 6;</code> 25169 26022 */ 25170 public boolean hasDoubleValue() { 26023 @Override 26024 public boolean hasDoubleValue() { 25171 26025 return ((bitField0_ & 0x00000008) == 0x00000008); 25172 26026 } … … 25174 26028 * <code>optional double double_value = 6;</code> 25175 26029 */ 25176 public double getDoubleValue() { 26030 @Override 26031 public double getDoubleValue() { 25177 26032 return doubleValue_; 25178 26033 } … … 25183 26038 * <code>optional bytes string_value = 7;</code> 25184 26039 */ 25185 public boolean hasStringValue() { 26040 @Override 26041 public boolean hasStringValue() { 25186 26042 return ((bitField0_ & 0x00000010) == 0x00000010); 25187 26043 } … … 25189 26045 * <code>optional bytes string_value = 7;</code> 25190 26046 */ 25191 public com.google.protobuf.ByteString getStringValue() { 26047 @Override 26048 public com.google.protobuf.ByteString getStringValue() { 25192 26049 return stringValue_; 25193 26050 } … … 25198 26055 * <code>optional string aggregate_value = 8;</code> 25199 26056 */ 25200 public boolean hasAggregateValue() { 26057 @Override 26058 public boolean hasAggregateValue() { 25201 26059 return ((bitField0_ & 0x00000020) == 0x00000020); 25202 26060 } … … 25204 26062 * <code>optional string aggregate_value = 8;</code> 25205 26063 */ 25206 public java.lang.String getAggregateValue() { 26064 @Override 26065 public java.lang.String getAggregateValue() { 25207 26066 java.lang.Object ref = aggregateValue_; 25208 26067 if (ref instanceof java.lang.String) { 25209 26068 return (java.lang.String) ref; 25210 26069 } else { 25211 com.google.protobuf.ByteString bs = 26070 com.google.protobuf.ByteString bs = 25212 26071 (com.google.protobuf.ByteString) ref; 25213 26072 java.lang.String s = bs.toStringUtf8(); … … 25221 26080 * <code>optional string aggregate_value = 8;</code> 25222 26081 */ 25223 public com.google.protobuf.ByteString 26082 @Override 26083 public com.google.protobuf.ByteString 25224 26084 getAggregateValueBytes() { 25225 26085 java.lang.Object ref = aggregateValue_; 25226 26086 if (ref instanceof java.lang.String) { 25227 com.google.protobuf.ByteString b = 26087 com.google.protobuf.ByteString b = 25228 26088 com.google.protobuf.ByteString.copyFromUtf8( 25229 26089 (java.lang.String) ref); … … 25245 26105 } 25246 26106 private byte memoizedIsInitialized = -1; 25247 public final boolean isInitialized() { 26107 @Override 26108 public final boolean isInitialized() { 25248 26109 byte isInitialized = memoizedIsInitialized; 25249 26110 if (isInitialized == 1) return true; … … 25260 26121 } 25261 26122 25262 public void writeTo(com.google.protobuf.CodedOutputStream output) 26123 @Override 26124 public void writeTo(com.google.protobuf.CodedOutputStream output) 25263 26125 throws java.io.IOException { 25264 26126 getSerializedSize(); … … 25288 26150 25289 26151 private int memoizedSerializedSize = -1; 25290 public int getSerializedSize() { 26152 @Override 26153 public int getSerializedSize() { 25291 26154 int size = memoizedSerializedSize; 25292 26155 if (size != -1) return size; … … 25387 26250 25388 26251 public static Builder newBuilder() { return Builder.create(); } 25389 public Builder newBuilderForType() { return newBuilder(); } 26252 @Override 26253 public Builder newBuilderForType() { return newBuilder(); } 25390 26254 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.UninterpretedOption prototype) { 25391 26255 return newBuilder().mergeFrom(prototype); 25392 26256 } 25393 public Builder toBuilder() { return newBuilder(this); } 26257 @Override 26258 public Builder toBuilder() { return newBuilder(this); } 25394 26259 25395 26260 @java.lang.Override … … 25420 26285 } 25421 26286 25422 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 26287 @Override 26288 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 25423 26289 internalGetFieldAccessorTable() { 25424 26290 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_UninterpretedOption_fieldAccessorTable … … 25446 26312 } 25447 26313 25448 public Builder clear() { 26314 @Override 26315 public Builder clear() { 25449 26316 super.clear(); 25450 26317 if (nameBuilder_ == null) { … … 25469 26336 } 25470 26337 25471 public Builder clone() { 26338 @Override 26339 public Builder clone() { 25472 26340 return create().mergeFrom(buildPartial()); 25473 26341 } 25474 26342 25475 public com.google.protobuf.Descriptors.Descriptor 26343 @Override 26344 public com.google.protobuf.Descriptors.Descriptor 25476 26345 getDescriptorForType() { 25477 26346 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_UninterpretedOption_descriptor; 25478 26347 } 25479 26348 25480 public com.google.protobuf.DescriptorProtos.UninterpretedOption getDefaultInstanceForType() { 26349 @Override 26350 public com.google.protobuf.DescriptorProtos.UninterpretedOption getDefaultInstanceForType() { 25481 26351 return com.google.protobuf.DescriptorProtos.UninterpretedOption.getDefaultInstance(); 25482 26352 } 25483 26353 25484 public com.google.protobuf.DescriptorProtos.UninterpretedOption build() { 26354 @Override 26355 public com.google.protobuf.DescriptorProtos.UninterpretedOption build() { 25485 26356 com.google.protobuf.DescriptorProtos.UninterpretedOption result = buildPartial(); 25486 26357 if (!result.isInitialized()) { … … 25490 26361 } 25491 26362 25492 public com.google.protobuf.DescriptorProtos.UninterpretedOption buildPartial() { 26363 @Override 26364 public com.google.protobuf.DescriptorProtos.UninterpretedOption buildPartial() { 25493 26365 com.google.protobuf.DescriptorProtos.UninterpretedOption result = new com.google.protobuf.DescriptorProtos.UninterpretedOption(this); 25494 26366 int from_bitField0_ = bitField0_; … … 25532 26404 } 25533 26405 25534 public Builder mergeFrom(com.google.protobuf.Message other) { 26406 @Override 26407 public Builder mergeFrom(com.google.protobuf.Message other) { 25535 26408 if (other instanceof com.google.protobuf.DescriptorProtos.UninterpretedOption) { 25536 26409 return mergeFrom((com.google.protobuf.DescriptorProtos.UninterpretedOption)other); … … 25561 26434 name_ = other.name_; 25562 26435 bitField0_ = (bitField0_ & ~0x00000001); 25563 nameBuilder_ = 26436 nameBuilder_ = 25564 26437 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 25565 26438 getNameFieldBuilder() : null; … … 25595 26468 } 25596 26469 25597 public final boolean isInitialized() { 26470 @Override 26471 public final boolean isInitialized() { 25598 26472 for (int i = 0; i < getNameCount(); i++) { 25599 26473 if (!getName(i).isInitialized()) { 25600 26474 25601 26475 return false; 25602 26476 } … … 25605 26479 } 25606 26480 25607 public Builder mergeFrom( 26481 @Override 26482 public Builder mergeFrom( 25608 26483 com.google.protobuf.CodedInputStream input, 25609 26484 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 25639 26514 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 25640 26515 */ 25641 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart> getNameList() { 26516 @Override 26517 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart> getNameList() { 25642 26518 if (nameBuilder_ == null) { 25643 26519 return java.util.Collections.unmodifiableList(name_); … … 25649 26525 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 25650 26526 */ 25651 public int getNameCount() { 26527 @Override 26528 public int getNameCount() { 25652 26529 if (nameBuilder_ == null) { 25653 26530 return name_.size(); … … 25659 26536 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 25660 26537 */ 25661 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart getName(int index) { 26538 @Override 26539 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart getName(int index) { 25662 26540 if (nameBuilder_ == null) { 25663 26541 return name_.get(index); … … 25809 26687 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 25810 26688 */ 25811 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder getNameOrBuilder( 26689 @Override 26690 public com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder getNameOrBuilder( 25812 26691 int index) { 25813 26692 if (nameBuilder_ == null) { … … 25819 26698 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 25820 26699 */ 25821 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder> 26700 @Override 26701 public java.util.List<? extends com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder> 25822 26702 getNameOrBuilderList() { 25823 26703 if (nameBuilder_ != null) { … … 25845 26725 * <code>repeated .google.protobuf.UninterpretedOption.NamePart name = 2;</code> 25846 26726 */ 25847 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart.Builder> 26727 public java.util.List<com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart.Builder> 25848 26728 getNameBuilderList() { 25849 26729 return getNameFieldBuilder().getBuilderList(); 25850 26730 } 25851 26731 private com.google.protobuf.RepeatedFieldBuilder< 25852 com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart, com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder> 26732 com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart, com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePart.Builder, com.google.protobuf.DescriptorProtos.UninterpretedOption.NamePartOrBuilder> 25853 26733 getNameFieldBuilder() { 25854 26734 if (nameBuilder_ == null) { … … 25872 26752 * </pre> 25873 26753 */ 25874 public boolean hasIdentifierValue() { 26754 @Override 26755 public boolean hasIdentifierValue() { 25875 26756 return ((bitField0_ & 0x00000002) == 0x00000002); 25876 26757 } … … 25883 26764 * </pre> 25884 26765 */ 25885 public java.lang.String getIdentifierValue() { 26766 @Override 26767 public java.lang.String getIdentifierValue() { 25886 26768 java.lang.Object ref = identifierValue_; 25887 26769 if (!(ref instanceof java.lang.String)) { … … 25905 26787 * </pre> 25906 26788 */ 25907 public com.google.protobuf.ByteString 26789 @Override 26790 public com.google.protobuf.ByteString 25908 26791 getIdentifierValueBytes() { 25909 26792 java.lang.Object ref = identifierValue_; 25910 26793 if (ref instanceof String) { 25911 com.google.protobuf.ByteString b = 26794 com.google.protobuf.ByteString b = 25912 26795 com.google.protobuf.ByteString.copyFromUtf8( 25913 26796 (java.lang.String) ref); … … 25973 26856 * <code>optional uint64 positive_int_value = 4;</code> 25974 26857 */ 25975 public boolean hasPositiveIntValue() { 26858 @Override 26859 public boolean hasPositiveIntValue() { 25976 26860 return ((bitField0_ & 0x00000004) == 0x00000004); 25977 26861 } … … 25979 26863 * <code>optional uint64 positive_int_value = 4;</code> 25980 26864 */ 25981 public long getPositiveIntValue() { 26865 @Override 26866 public long getPositiveIntValue() { 25982 26867 return positiveIntValue_; 25983 26868 } … … 26005 26890 * <code>optional int64 negative_int_value = 5;</code> 26006 26891 */ 26007 public boolean hasNegativeIntValue() { 26892 @Override 26893 public boolean hasNegativeIntValue() { 26008 26894 return ((bitField0_ & 0x00000008) == 0x00000008); 26009 26895 } … … 26011 26897 * <code>optional int64 negative_int_value = 5;</code> 26012 26898 */ 26013 public long getNegativeIntValue() { 26899 @Override 26900 public long getNegativeIntValue() { 26014 26901 return negativeIntValue_; 26015 26902 } … … 26037 26924 * <code>optional double double_value = 6;</code> 26038 26925 */ 26039 public boolean hasDoubleValue() { 26926 @Override 26927 public boolean hasDoubleValue() { 26040 26928 return ((bitField0_ & 0x00000010) == 0x00000010); 26041 26929 } … … 26043 26931 * <code>optional double double_value = 6;</code> 26044 26932 */ 26045 public double getDoubleValue() { 26933 @Override 26934 public double getDoubleValue() { 26046 26935 return doubleValue_; 26047 26936 } … … 26069 26958 * <code>optional bytes string_value = 7;</code> 26070 26959 */ 26071 public boolean hasStringValue() { 26960 @Override 26961 public boolean hasStringValue() { 26072 26962 return ((bitField0_ & 0x00000020) == 0x00000020); 26073 26963 } … … 26075 26965 * <code>optional bytes string_value = 7;</code> 26076 26966 */ 26077 public com.google.protobuf.ByteString getStringValue() { 26967 @Override 26968 public com.google.protobuf.ByteString getStringValue() { 26078 26969 return stringValue_; 26079 26970 } … … 26104 26995 * <code>optional string aggregate_value = 8;</code> 26105 26996 */ 26106 public boolean hasAggregateValue() { 26997 @Override 26998 public boolean hasAggregateValue() { 26107 26999 return ((bitField0_ & 0x00000040) == 0x00000040); 26108 27000 } … … 26110 27002 * <code>optional string aggregate_value = 8;</code> 26111 27003 */ 26112 public java.lang.String getAggregateValue() { 27004 @Override 27005 public java.lang.String getAggregateValue() { 26113 27006 java.lang.Object ref = aggregateValue_; 26114 27007 if (!(ref instanceof java.lang.String)) { … … 26127 27020 * <code>optional string aggregate_value = 8;</code> 26128 27021 */ 26129 public com.google.protobuf.ByteString 27022 @Override 27023 public com.google.protobuf.ByteString 26130 27024 getAggregateValueBytes() { 26131 27025 java.lang.Object ref = aggregateValue_; 26132 27026 if (ref instanceof String) { 26133 com.google.protobuf.ByteString b = 27027 com.google.protobuf.ByteString b = 26134 27028 com.google.protobuf.ByteString.copyFromUtf8( 26135 27029 (java.lang.String) ref); … … 26238 27132 * </pre> 26239 27133 */ 26240 java.util.List<com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location> 27134 java.util.List<com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location> 26241 27135 getLocationList(); 26242 27136 /** … … 26383 27277 * </pre> 26384 27278 */ 26385 java.util.List<? extends com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder> 27279 java.util.List<? extends com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder> 26386 27280 getLocationOrBuilderList(); 26387 27281 /** … … 26459 27353 } 26460 27354 26461 public SourceCodeInfo getDefaultInstanceForType() { 27355 @Override 27356 public SourceCodeInfo getDefaultInstanceForType() { 26462 27357 return defaultInstance; 26463 27358 } … … 26520 27415 } 26521 27416 26522 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 27417 @Override 27418 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 26523 27419 internalGetFieldAccessorTable() { 26524 27420 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_SourceCodeInfo_fieldAccessorTable … … 26529 27425 public static com.google.protobuf.Parser<SourceCodeInfo> PARSER = 26530 27426 new com.google.protobuf.AbstractParser<SourceCodeInfo>() { 26531 public SourceCodeInfo parsePartialFrom( 27427 @Override 27428 public SourceCodeInfo parsePartialFrom( 26532 27429 com.google.protobuf.CodedInputStream input, 26533 27430 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 26805 27702 } 26806 27703 26807 public Location getDefaultInstanceForType() { 27704 @Override 27705 public Location getDefaultInstanceForType() { 26808 27706 return defaultInstance; 26809 27707 } … … 26915 27813 } 26916 27814 26917 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 27815 @Override 27816 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 26918 27817 internalGetFieldAccessorTable() { 26919 27818 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_SourceCodeInfo_Location_fieldAccessorTable … … 26924 27823 public static com.google.protobuf.Parser<Location> PARSER = 26925 27824 new com.google.protobuf.AbstractParser<Location>() { 26926 public Location parsePartialFrom( 27825 @Override 27826 public Location parsePartialFrom( 26927 27827 com.google.protobuf.CodedInputStream input, 26928 27828 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 26967 27867 * </pre> 26968 27868 */ 26969 public java.util.List<java.lang.Integer> 27869 @Override 27870 public java.util.List<java.lang.Integer> 26970 27871 getPathList() { 26971 27872 return path_; … … 26998 27899 * </pre> 26999 27900 */ 27000 public int getPathCount() { 27901 @Override 27902 public int getPathCount() { 27001 27903 return path_.size(); 27002 27904 } … … 27028 27930 * </pre> 27029 27931 */ 27030 public int getPath(int index) { 27932 @Override 27933 public int getPath(int index) { 27031 27934 return path_.get(index); 27032 27935 } … … 27046 27949 * </pre> 27047 27950 */ 27048 public java.util.List<java.lang.Integer> 27951 @Override 27952 public java.util.List<java.lang.Integer> 27049 27953 getSpanList() { 27050 27954 return span_; … … 27061 27965 * </pre> 27062 27966 */ 27063 public int getSpanCount() { 27967 @Override 27968 public int getSpanCount() { 27064 27969 return span_.size(); 27065 27970 } … … 27075 27980 * </pre> 27076 27981 */ 27077 public int getSpan(int index) { 27982 @Override 27983 public int getSpan(int index) { 27078 27984 return span_.get(index); 27079 27985 } … … 27115 28021 * </pre> 27116 28022 */ 27117 public boolean hasLeadingComments() { 28023 @Override 28024 public boolean hasLeadingComments() { 27118 28025 return ((bitField0_ & 0x00000001) == 0x00000001); 27119 28026 } … … 27151 28058 * </pre> 27152 28059 */ 27153 public java.lang.String getLeadingComments() { 28060 @Override 28061 public java.lang.String getLeadingComments() { 27154 28062 java.lang.Object ref = leadingComments_; 27155 28063 if (ref instanceof java.lang.String) { 27156 28064 return (java.lang.String) ref; 27157 28065 } else { 27158 com.google.protobuf.ByteString bs = 28066 com.google.protobuf.ByteString bs = 27159 28067 (com.google.protobuf.ByteString) ref; 27160 28068 java.lang.String s = bs.toStringUtf8(); … … 27198 28106 * </pre> 27199 28107 */ 27200 public com.google.protobuf.ByteString 28108 @Override 28109 public com.google.protobuf.ByteString 27201 28110 getLeadingCommentsBytes() { 27202 28111 java.lang.Object ref = leadingComments_; 27203 28112 if (ref instanceof java.lang.String) { 27204 com.google.protobuf.ByteString b = 28113 com.google.protobuf.ByteString b = 27205 28114 com.google.protobuf.ByteString.copyFromUtf8( 27206 28115 (java.lang.String) ref); … … 27217 28126 * <code>optional string trailing_comments = 4;</code> 27218 28127 */ 27219 public boolean hasTrailingComments() { 28128 @Override 28129 public boolean hasTrailingComments() { 27220 28130 return ((bitField0_ & 0x00000002) == 0x00000002); 27221 28131 } … … 27223 28133 * <code>optional string trailing_comments = 4;</code> 27224 28134 */ 27225 public java.lang.String getTrailingComments() { 28135 @Override 28136 public java.lang.String getTrailingComments() { 27226 28137 java.lang.Object ref = trailingComments_; 27227 28138 if (ref instanceof java.lang.String) { 27228 28139 return (java.lang.String) ref; 27229 28140 } else { 27230 com.google.protobuf.ByteString bs = 28141 com.google.protobuf.ByteString bs = 27231 28142 (com.google.protobuf.ByteString) ref; 27232 28143 java.lang.String s = bs.toStringUtf8(); … … 27240 28151 * <code>optional string trailing_comments = 4;</code> 27241 28152 */ 27242 public com.google.protobuf.ByteString 28153 @Override 28154 public com.google.protobuf.ByteString 27243 28155 getTrailingCommentsBytes() { 27244 28156 java.lang.Object ref = trailingComments_; 27245 28157 if (ref instanceof java.lang.String) { 27246 com.google.protobuf.ByteString b = 28158 com.google.protobuf.ByteString b = 27247 28159 com.google.protobuf.ByteString.copyFromUtf8( 27248 28160 (java.lang.String) ref); … … 27261 28173 } 27262 28174 private byte memoizedIsInitialized = -1; 27263 public final boolean isInitialized() { 28175 @Override 28176 public final boolean isInitialized() { 27264 28177 byte isInitialized = memoizedIsInitialized; 27265 28178 if (isInitialized == 1) return true; … … 27270 28183 } 27271 28184 27272 public void writeTo(com.google.protobuf.CodedOutputStream output) 28185 @Override 28186 public void writeTo(com.google.protobuf.CodedOutputStream output) 27273 28187 throws java.io.IOException { 27274 28188 getSerializedSize(); … … 27297 28211 27298 28212 private int memoizedSerializedSize = -1; 27299 public int getSerializedSize() { 28213 @Override 28214 public int getSerializedSize() { 27300 28215 int size = memoizedSerializedSize; 27301 28216 if (size != -1) return size; … … 27404 28319 27405 28320 public static Builder newBuilder() { return Builder.create(); } 27406 public Builder newBuilderForType() { return newBuilder(); } 28321 @Override 28322 public Builder newBuilderForType() { return newBuilder(); } 27407 28323 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location prototype) { 27408 28324 return newBuilder().mergeFrom(prototype); 27409 28325 } 27410 public Builder toBuilder() { return newBuilder(this); } 28326 @Override 28327 public Builder toBuilder() { return newBuilder(this); } 27411 28328 27412 28329 @java.lang.Override … … 27428 28345 } 27429 28346 27430 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 28347 @Override 28348 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 27431 28349 internalGetFieldAccessorTable() { 27432 28350 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_SourceCodeInfo_Location_fieldAccessorTable … … 27453 28371 } 27454 28372 27455 public Builder clear() { 28373 @Override 28374 public Builder clear() { 27456 28375 super.clear(); 27457 28376 path_ = java.util.Collections.emptyList(); … … 27466 28385 } 27467 28386 27468 public Builder clone() { 28387 @Override 28388 public Builder clone() { 27469 28389 return create().mergeFrom(buildPartial()); 27470 28390 } 27471 28391 27472 public com.google.protobuf.Descriptors.Descriptor 28392 @Override 28393 public com.google.protobuf.Descriptors.Descriptor 27473 28394 getDescriptorForType() { 27474 28395 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_SourceCodeInfo_Location_descriptor; 27475 28396 } 27476 28397 27477 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location getDefaultInstanceForType() { 28398 @Override 28399 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location getDefaultInstanceForType() { 27478 28400 return com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location.getDefaultInstance(); 27479 28401 } 27480 28402 27481 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location build() { 28403 @Override 28404 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location build() { 27482 28405 com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location result = buildPartial(); 27483 28406 if (!result.isInitialized()) { … … 27487 28410 } 27488 28411 27489 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location buildPartial() { 28412 @Override 28413 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location buildPartial() { 27490 28414 com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location result = new com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location(this); 27491 28415 int from_bitField0_ = bitField0_; … … 27514 28438 } 27515 28439 27516 public Builder mergeFrom(com.google.protobuf.Message other) { 28440 @Override 28441 public Builder mergeFrom(com.google.protobuf.Message other) { 27517 28442 if (other instanceof com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location) { 27518 28443 return mergeFrom((com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location)other); … … 27559 28484 } 27560 28485 27561 public final boolean isInitialized() { 28486 @Override 28487 public final boolean isInitialized() { 27562 28488 return true; 27563 28489 } 27564 28490 27565 public Builder mergeFrom( 28491 @Override 28492 public Builder mergeFrom( 27566 28493 com.google.protobuf.CodedInputStream input, 27567 28494 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 27616 28543 * </pre> 27617 28544 */ 27618 public java.util.List<java.lang.Integer> 28545 @Override 28546 public java.util.List<java.lang.Integer> 27619 28547 getPathList() { 27620 28548 return java.util.Collections.unmodifiableList(path_); … … 27647 28575 * </pre> 27648 28576 */ 27649 public int getPathCount() { 28577 @Override 28578 public int getPathCount() { 27650 28579 return path_.size(); 27651 28580 } … … 27677 28606 * </pre> 27678 28607 */ 27679 public int getPath(int index) { 28608 @Override 28609 public int getPath(int index) { 27680 28610 return path_.get(index); 27681 28611 } … … 27834 28764 * </pre> 27835 28765 */ 27836 public java.util.List<java.lang.Integer> 28766 @Override 28767 public java.util.List<java.lang.Integer> 27837 28768 getSpanList() { 27838 28769 return java.util.Collections.unmodifiableList(span_); … … 27849 28780 * </pre> 27850 28781 */ 27851 public int getSpanCount() { 28782 @Override 28783 public int getSpanCount() { 27852 28784 return span_.size(); 27853 28785 } … … 27863 28795 * </pre> 27864 28796 */ 27865 public int getSpan(int index) { 28797 @Override 28798 public int getSpan(int index) { 27866 28799 return span_.get(index); 27867 28800 } … … 27972 28905 * </pre> 27973 28906 */ 27974 public boolean hasLeadingComments() { 28907 @Override 28908 public boolean hasLeadingComments() { 27975 28909 return ((bitField0_ & 0x00000004) == 0x00000004); 27976 28910 } … … 28008 28942 * </pre> 28009 28943 */ 28010 public java.lang.String getLeadingComments() { 28944 @Override 28945 public java.lang.String getLeadingComments() { 28011 28946 java.lang.Object ref = leadingComments_; 28012 28947 if (!(ref instanceof java.lang.String)) { … … 28055 28990 * </pre> 28056 28991 */ 28057 public com.google.protobuf.ByteString 28992 @Override 28993 public com.google.protobuf.ByteString 28058 28994 getLeadingCommentsBytes() { 28059 28995 java.lang.Object ref = leadingComments_; 28060 28996 if (ref instanceof String) { 28061 com.google.protobuf.ByteString b = 28997 com.google.protobuf.ByteString b = 28062 28998 com.google.protobuf.ByteString.copyFromUtf8( 28063 28999 (java.lang.String) ref); … … 28198 29134 * <code>optional string trailing_comments = 4;</code> 28199 29135 */ 28200 public boolean hasTrailingComments() { 29136 @Override 29137 public boolean hasTrailingComments() { 28201 29138 return ((bitField0_ & 0x00000008) == 0x00000008); 28202 29139 } … … 28204 29141 * <code>optional string trailing_comments = 4;</code> 28205 29142 */ 28206 public java.lang.String getTrailingComments() { 29143 @Override 29144 public java.lang.String getTrailingComments() { 28207 29145 java.lang.Object ref = trailingComments_; 28208 29146 if (!(ref instanceof java.lang.String)) { … … 28221 29159 * <code>optional string trailing_comments = 4;</code> 28222 29160 */ 28223 public com.google.protobuf.ByteString 29161 @Override 29162 public com.google.protobuf.ByteString 28224 29163 getTrailingCommentsBytes() { 28225 29164 java.lang.Object ref = trailingComments_; 28226 29165 if (ref instanceof String) { 28227 com.google.protobuf.ByteString b = 29166 com.google.protobuf.ByteString b = 28228 29167 com.google.protobuf.ByteString.copyFromUtf8( 28229 29168 (java.lang.String) ref); … … 28330 29269 * </pre> 28331 29270 */ 28332 public java.util.List<com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location> getLocationList() { 29271 @Override 29272 public java.util.List<com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location> getLocationList() { 28333 29273 return location_; 28334 29274 } … … 28380 29320 * </pre> 28381 29321 */ 28382 public java.util.List<? extends com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder> 29322 @Override 29323 public java.util.List<? extends com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder> 28383 29324 getLocationOrBuilderList() { 28384 29325 return location_; … … 28431 29372 * </pre> 28432 29373 */ 28433 public int getLocationCount() { 29374 @Override 29375 public int getLocationCount() { 28434 29376 return location_.size(); 28435 29377 } … … 28481 29423 * </pre> 28482 29424 */ 28483 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location getLocation(int index) { 29425 @Override 29426 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location getLocation(int index) { 28484 29427 return location_.get(index); 28485 29428 } … … 28531 29474 * </pre> 28532 29475 */ 28533 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder getLocationOrBuilder( 29476 @Override 29477 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder getLocationOrBuilder( 28534 29478 int index) { 28535 29479 return location_.get(index); … … 28540 29484 } 28541 29485 private byte memoizedIsInitialized = -1; 28542 public final boolean isInitialized() { 29486 @Override 29487 public final boolean isInitialized() { 28543 29488 byte isInitialized = memoizedIsInitialized; 28544 29489 if (isInitialized == 1) return true; … … 28549 29494 } 28550 29495 28551 public void writeTo(com.google.protobuf.CodedOutputStream output) 29496 @Override 29497 public void writeTo(com.google.protobuf.CodedOutputStream output) 28552 29498 throws java.io.IOException { 28553 29499 getSerializedSize(); … … 28559 29505 28560 29506 private int memoizedSerializedSize = -1; 28561 public int getSerializedSize() { 29507 @Override 29508 public int getSerializedSize() { 28562 29509 int size = memoizedSerializedSize; 28563 29510 if (size != -1) return size; … … 28634 29581 28635 29582 public static Builder newBuilder() { return Builder.create(); } 28636 public Builder newBuilderForType() { return newBuilder(); } 29583 @Override 29584 public Builder newBuilderForType() { return newBuilder(); } 28637 29585 public static Builder newBuilder(com.google.protobuf.DescriptorProtos.SourceCodeInfo prototype) { 28638 29586 return newBuilder().mergeFrom(prototype); 28639 29587 } 28640 public Builder toBuilder() { return newBuilder(this); } 29588 @Override 29589 public Builder toBuilder() { return newBuilder(this); } 28641 29590 28642 29591 @java.lang.Override … … 28663 29612 } 28664 29613 28665 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 29614 @Override 29615 protected com.google.protobuf.GeneratedMessage.FieldAccessorTable 28666 29616 internalGetFieldAccessorTable() { 28667 29617 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_SourceCodeInfo_fieldAccessorTable … … 28689 29639 } 28690 29640 28691 public Builder clear() { 29641 @Override 29642 public Builder clear() { 28692 29643 super.clear(); 28693 29644 if (locationBuilder_ == null) { … … 28700 29651 } 28701 29652 28702 public Builder clone() { 29653 @Override 29654 public Builder clone() { 28703 29655 return create().mergeFrom(buildPartial()); 28704 29656 } 28705 29657 28706 public com.google.protobuf.Descriptors.Descriptor 29658 @Override 29659 public com.google.protobuf.Descriptors.Descriptor 28707 29660 getDescriptorForType() { 28708 29661 return com.google.protobuf.DescriptorProtos.internal_static_google_protobuf_SourceCodeInfo_descriptor; 28709 29662 } 28710 29663 28711 public com.google.protobuf.DescriptorProtos.SourceCodeInfo getDefaultInstanceForType() { 29664 @Override 29665 public com.google.protobuf.DescriptorProtos.SourceCodeInfo getDefaultInstanceForType() { 28712 29666 return com.google.protobuf.DescriptorProtos.SourceCodeInfo.getDefaultInstance(); 28713 29667 } 28714 29668 28715 public com.google.protobuf.DescriptorProtos.SourceCodeInfo build() { 29669 @Override 29670 public com.google.protobuf.DescriptorProtos.SourceCodeInfo build() { 28716 29671 com.google.protobuf.DescriptorProtos.SourceCodeInfo result = buildPartial(); 28717 29672 if (!result.isInitialized()) { … … 28721 29676 } 28722 29677 28723 public com.google.protobuf.DescriptorProtos.SourceCodeInfo buildPartial() { 29678 @Override 29679 public com.google.protobuf.DescriptorProtos.SourceCodeInfo buildPartial() { 28724 29680 com.google.protobuf.DescriptorProtos.SourceCodeInfo result = new com.google.protobuf.DescriptorProtos.SourceCodeInfo(this); 28725 29681 int from_bitField0_ = bitField0_; … … 28737 29693 } 28738 29694 28739 public Builder mergeFrom(com.google.protobuf.Message other) { 29695 @Override 29696 public Builder mergeFrom(com.google.protobuf.Message other) { 28740 29697 if (other instanceof com.google.protobuf.DescriptorProtos.SourceCodeInfo) { 28741 29698 return mergeFrom((com.google.protobuf.DescriptorProtos.SourceCodeInfo)other); … … 28766 29723 location_ = other.location_; 28767 29724 bitField0_ = (bitField0_ & ~0x00000001); 28768 locationBuilder_ = 29725 locationBuilder_ = 28769 29726 com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? 28770 29727 getLocationFieldBuilder() : null; … … 28778 29735 } 28779 29736 28780 public final boolean isInitialized() { 29737 @Override 29738 public final boolean isInitialized() { 28781 29739 return true; 28782 29740 } 28783 29741 28784 public Builder mergeFrom( 29742 @Override 29743 public Builder mergeFrom( 28785 29744 com.google.protobuf.CodedInputStream input, 28786 29745 com.google.protobuf.ExtensionRegistryLite extensionRegistry) … … 28860 29819 * </pre> 28861 29820 */ 28862 public java.util.List<com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location> getLocationList() { 29821 @Override 29822 public java.util.List<com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location> getLocationList() { 28863 29823 if (locationBuilder_ == null) { 28864 29824 return java.util.Collections.unmodifiableList(location_); … … 28914 29874 * </pre> 28915 29875 */ 28916 public int getLocationCount() { 29876 @Override 29877 public int getLocationCount() { 28917 29878 if (locationBuilder_ == null) { 28918 29879 return location_.size(); … … 28968 29929 * </pre> 28969 29930 */ 28970 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location getLocation(int index) { 29931 @Override 29932 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location getLocation(int index) { 28971 29933 if (locationBuilder_ == null) { 28972 29934 return location_.get(index); … … 29602 30564 * </pre> 29603 30565 */ 29604 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder getLocationOrBuilder( 30566 @Override 30567 public com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder getLocationOrBuilder( 29605 30568 int index) { 29606 30569 if (locationBuilder_ == null) { … … 29656 30619 * </pre> 29657 30620 */ 29658 public java.util.List<? extends com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder> 30621 @Override 30622 public java.util.List<? extends com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder> 29659 30623 getLocationOrBuilderList() { 29660 30624 if (locationBuilder_ != null) { … … 29814 30778 * </pre> 29815 30779 */ 29816 public java.util.List<com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location.Builder> 30780 public java.util.List<com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location.Builder> 29817 30781 getLocationBuilderList() { 29818 30782 return getLocationFieldBuilder().getBuilderList(); 29819 30783 } 29820 30784 private com.google.protobuf.RepeatedFieldBuilder< 29821 com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location, com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location.Builder, com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder> 30785 com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location, com.google.protobuf.DescriptorProtos.SourceCodeInfo.Location.Builder, com.google.protobuf.DescriptorProtos.SourceCodeInfo.LocationOrBuilder> 29822 30786 getLocationFieldBuilder() { 29823 30787 if (locationBuilder_ == null) { … … 30071 31035 com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = 30072 31036 new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { 30073 public com.google.protobuf.ExtensionRegistry assignDescriptors( 31037 @Override 31038 public com.google.protobuf.ExtensionRegistry assignDescriptors( 30074 31039 com.google.protobuf.Descriptors.FileDescriptor root) { 30075 31040 descriptor = root;
Note:
See TracChangeset
for help on using the changeset viewer.
