id
stringlengths
36
36
text
stringlengths
1
1.25M
35566dee-3a7e-4a53-af83-4876bc074b20
public static String parse(String expression){ expression=expression.toLowerCase(); try { return ""+(new ParseExpression()).evaluate(expression); } catch (Exception e) { // TODO Auto-generated catch block return "error: "+e.getMessage(); } }
e92c9612-296c-4843-ba10-f4529cd2a6e2
public java.util.Calendar getCustomDate46() { return this.customDate46; }
17e04320-8f41-4052-9f64-b0f0a69dbabc
public org.bwapi.proxy.messages.GameMessages.UpgradeTypeOrBuilder getUpgradeTypeOrBuilder() { return upgradeType_; }
d902ee57-b706-46fd-85dc-36f235db6338
* @return char */ public static char codeCharacter(int code) { return ((char) code); }
f6c87741-8635-4470-b6fa-ddd3839354cd
public static Population getInstance() { if (uniqueInstance == null) { uniqueInstance = new Population(); } return uniqueInstance; }
4ad81103-0c48-4c5e-aa3a-31b7d2561dce
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); }
344b7fa6-317d-408f-b18e-88bdd2de1d41
public void setCreatedByIntegrationId(crmondemand.xml.opportunity.query.QueryType createdByIntegrationId) { this.createdByIntegrationId = createdByIntegrationId; }
243aa862-d434-4b08-96f6-5bea16cc0239
public void setCustomBoolean6(java.lang.Boolean customBoolean6) { this.customBoolean6 = customBoolean6; }
d28a8f8f-fea6-4c76-8579-482d949f882e
public void setProductExternalSystemId(java.lang.String productExternalSystemId) { this.productExternalSystemId = productExternalSystemId; }
771867ef-48a0-4bc3-8dc4-1978b1a4bdc5
public void setCustomBoolean29(crmondemand.xml.opportunity.query.QueryType customBoolean29) { this.customBoolean29 = customBoolean29; }
58f85560-d18f-49bc-abaf-33716787b70b
public void setCustomNumber22(java.math.BigDecimal customNumber22) { this.customNumber22 = customNumber22; }
0eaee0ba-b231-4097-923d-365fd2603864
public void setCustomPickList91(crmondemand.xml.customobject6.query.QueryType customPickList91) { this.customPickList91 = customPickList91; }
cbcb679c-4e0a-4112-8424-f93469c55b8c
public void setIndexedNumber0(crmondemand.xml.customobject3.query.QueryType indexedNumber0) { this.indexedNumber0 = indexedNumber0; }
a6b1796d-66aa-43d9-a276-04aa628699f7
public Object getFieldValue(_Fields field) { switch (field) { } throw new IllegalStateException(); }
d01c4c7d-5170-40ef-82f5-267f67d69458
public void setInvtPeriodExternalSystemId(crmondemand.xml.customobject6.query.QueryType invtPeriodExternalSystemId) { this.invtPeriodExternalSystemId = invtPeriodExternalSystemId; }
c2d7ecfa-ead9-4003-92e7-20654c75d99e
public int checkBounds(float mouse,float a,float b){ //Resolve the boundaries for comparison, start is lower value, end is higher float start,end; if (a>b){ end = a; start =b; }else{ start = a; end = b; } //Check if the mouse is between start and end values if (mouse <= start) { return 1; }else if (mouse >= end) { return 2; } return 0; }
cc06136b-ce68-4620-9f66-a3a9568598a1
public void onRightClick(MouseHandler m, Level l, Player p) { if (!m.isRightClickedButton() || p.getMana() <= 50) return; if (!Entity.safeSpawn(m.getxPos() / 16, m.getyPos() / 16, l)) return; Sheep f = new Sheep((int) m.getxPos(), (int) m.getyPos(), l); l.addEntity(f); }
9707ef8f-c46e-412e-b702-c746ff1a9eed
public crmondemand.xml.contact.query.QueryType getCustomDate51() { return this.customDate51; }
c8c9ffdd-a2ce-44ed-9244-56424a149937
public void setCustomText63(java.lang.String customText63) { this.customText63 = customText63; }
c3be3b43-c5ac-49bb-ae0c-f932f61fdea9
private void initDeck(List<PropertyCard> properties, List<ActionCard> actions) { for (int i = 0; i < properties.size(); i++) { Card aCard; aCard = properties.get(i); currentDeck.add(aCard); } for (int j = 0; j < actions.size(); j++) { Card pCard; pCard = actions.get(j); currentDeck.add(pCard); } }
bc72c4d1-bb50-4be7-9366-151352aff00c
public Parser levelNumber() { if (levelNumberParser == null) { FutureParser future = scoped("levelNumber"); levelNumberParser = future; future.setParser(new Parser() { protected boolean accepts(TokenStream stream) { Token token = null; // Skipping past commas and semi-colons which leaked through to the parser. do { token = stream.nextToken(); } while (token != null && (token.getText().equals(",") || token.getText().equals(";"))); if (token != null && token.hasTag(SyntacticTag.CHARACTER_STRING) && isLevelNumber(token.getText())) { returnToken(token); return true; } else return false; } private boolean isLevelNumber(String text) { /* * The level number is a special numeric literal consisting of one * to two digits. A level number which is less than 10 may be * written either as a single digit or with a leading zero. * * Description from: Fujitsu Siemens, document * U41112-J-Z125-3-76. */ final int len = text.length(); if (len == 0 || len > 2) { return false; } final char c = text.charAt(0); if (c < '0' || c > '9') { return false; } if (len == 2) { final char d = text.charAt(0); if (d < '0' || d > '9') { return false; } } int val = Integer.parseInt(text); return (val > 0 && val <= 49) || (val == 77); } }); } return levelNumberParser; }
9395eb35-d773-4022-9426-8d210445c900
public void setCustomBoolean31(java.lang.Boolean customBoolean31) { this.customBoolean31 = customBoolean31; }
8dbac4ab-4805-43ae-a8fd-0958a5af5adb
private static String errorFormat(String text,Exception e) { String DATE = Common.getDate(); String TIME = Common.getTime(); //Get Tick count long TICKS = System.currentTimeMillis(); //Form a string describing the exception String EXCEPTION = e.toString(); String MESSAGE = "Error," + DATE + "," + TIME + "," + TICKS + "," + text + ","+ EXCEPTION + ",\n"; //Return String Formatted return MESSAGE; }
fc539568-feb1-407e-ab39-4b12835ef278
public crmondemand.xml.customobject6.query.QueryType getLicenseNumber() { return this.licenseNumber; }
6c7e1ae5-dde0-4260-8c2b-772dbb1fd586
public java.lang.String getCustomText71() { return this.customText71; }
96b0ad38-9594-433a-a8d1-6d5148979ab3
public void setCustomText9(crmondemand.xml.contact.query.QueryType customText9) { this.customText9 = customText9; }
fff46db1-2b59-4574-812d-ffa5cdccb1a5
public void setCustomText32(crmondemand.xml.customobject6.query.QueryType customText32) { this.customText32 = customText32; }
3f8fef4f-9ab8-43fe-a1dd-cced0535393a
public java.lang.Boolean getPermissionsEmailTemplateManagement() { return PermissionsEmailTemplateManagement; }
1702cbf4-3b53-478b-9a5c-bebbfa4b288f
public void setCustomDate26(java.util.Calendar customDate26) { this.customDate26 = customDate26; }
6a308627-5b6e-4e82-b5be-01ec7965c9c2
public crmondemand.xml.customobject6.query.QueryType getCustomPickList53() { return this.customPickList53; }
efa1abbf-be21-4bbe-bd51-c344fb989396
public void setCustomCurrency21(crmondemand.xml.opportunity.query.QueryType customCurrency21) { this.customCurrency21 = customCurrency21; }
2211dbab-5747-48fa-b5a7-f8500e7678ce
public crmondemand.xml.opportunity.query.QueryType getAccountPriority() { return this.accountPriority; }
03e4358c-3e8c-4f5b-b644-0e9b088e41f6
public void setOriginatingPartnerMainPhone(java.lang.String originatingPartnerMainPhone) { this.originatingPartnerMainPhone = originatingPartnerMainPhone; }
c596ae57-0b82-4bbf-8290-f0b3dfab0c4b
public java.util.Calendar getCustomDate11() { return this.customDate11; }
3b0cb8d4-2a0c-430f-a9a6-9aaf859f5dbd
public java.lang.String getCustomText62() { return this.customText62; }
3d677c50-0c51-44b7-b2f1-0ac115de3fb7
public static String makeYellow(String s) { return YELLOW+ s.toUpperCase() + RESET; }
6a944d52-fab2-43be-9bff-cd4747b7a112
public void setCustomBoolean13(java.lang.Boolean customBoolean13) { this.customBoolean13 = customBoolean13; }
736d7c69-2218-4871-aabe-7a5387d2054e
@Override public void render(Graphics2D g2do, int width, int height) { this.width = width; this.height = height; cache = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); Graphics2D g2d = cache.createGraphics(); for (GuiControl c : controlList) c.render(g2d, width, height); Tile[][] map = Client.instance.map; int mapWidth = map.length; int mapHeight = map[0].length; double w = (mapWidth * tileSize * zoom); if (w < width) zoom /= w / width; double h = (mapHeight * tileSize * zoom); if (h < height) zoom /= h / height; AffineTransform tx = g2d.getTransform(); g2d.translate(-scrollX, -scrollY); g2d.scale(zoom, zoom); // Rendering Map if (this.map == null || !map.equals(mapCache)) { this.map = new BufferedImage(map.length * tileSize, map[0].length * tileSize, BufferedImage.TYPE_INT_ARGB); Graphics2D g = this.map.createGraphics(); for (int x = 0; x < map.length; x++) { for (int y = 0; y < map[x].length; y++) { Tile tile = map[x][y]; Texture tex = TileRenderMap.getTexture(tile); if (tex == null) continue; g.drawImage(tex.getImage(), x * tileSize, y * tileSize, tileSize, tileSize, tex); } } g.dispose(); mapCache = map; } g2d.drawImage(this.map, 0, 0, null); // Rendering Buildings Building[][] buildings = Client.instance.buildings; for (int x = 0; x < buildings.length; x++) { for (int y = 0; y < buildings[x].length; y++) { if (buildings[x][y] != null) { Texture tex = buildings[x][y].getTexture(); if (tex != null) g2d.drawImage(tex.getImage(), x * tileSize, y * tileSize, tex.getWidth() / (TILE_SIZE_NORMAL / tileSize), tex.getHeight() / (TILE_SIZE_NORMAL / tileSize), tex); } } } if (fieldHover == null || fieldHover.length != mapWidth || fieldHover[0].length != mapHeight) fieldHover = new boolean[mapWidth][mapHeight]; if (field == null || field.length != mapWidth || field[0].length != mapHeight) field = new boolean[mapWidth][mapHeight]; // Rendering Click and Hover for (int x = 0; x < fieldHover.length; x++) { for (int y = 0; y < fieldHover[x].length; y++) { if (fieldHover[x][y]) { Texture tex = StandardTexture.get("hover"); Building b = buildings[x][y]; g2d.drawImage(tex.getImage(), x * tileSize, y * tileSize, tileSize * b.getSizeX(), tileSize * b.getSizeY(), tex); } if (field[x][y]) { Texture tex = StandardTexture.get("hover_clicked"); Building b = buildings[x][y]; g2d.drawImage(tex.getImage(), x * tileSize, y * tileSize, tileSize * b.getSizeX(), tileSize * b.getSizeY(), tex); } } } g2d.setTransform(tx); int[] x = new int[] { width / 2, width - tileSize / 2, width / 2, tileSize / 2 }; int[] y = new int[] { tileSize / 2, height / 2, height - tileSize / 2, height / 2 }; Texture tex = StandardTexture.get("arrow_" + Client.instance.preferences.game.arrow); for (int i = 0; i < 4; i++) { if (i == 0 && scrollY <= 0) continue; if (i == 1 && scrollX >= (int) (mapWidth * tileSize * zoom - width)) continue; if (i == 2 && scrollY >= (int) (mapHeight * tileSize * zoom - height)) continue; if (i == 3 && scrollX <= 0) continue; g2d.translate(x[i], y[i]); g2d.rotate(Math.toRadians(90 * i)); g2d.drawImage(tex.getImage(), -tileSize / 2, -tileSize / 2, tex); g2d.setTransform(tx); } g2d.dispose(); g2do.drawImage(cache, 0, 0, null); }
3af71897-3d38-4976-85d6-705f26a329e2
private void EliminarActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_EliminarActionPerformed // TODO add your handling code here: JFrame marco = new JFrame("DialogDemo"); marco.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); marco.pack(); try{ con=Principal.conexion(con); String eliminar = ("delete from Plato where NumeroPlato = '" + Integer.parseInt(NumeroDePlato.getText()) + "'"); PreparedStatement estado = con.prepareStatement (eliminar); estado.execute(); estado.close(); con.close(); JOptionPane.showMessageDialog(marco, "Registro Eliminado"); }catch (Exception e){ System.out.println("No se pudo eliminar el registro"); } }//GEN-LAST:event_EliminarActionPerformed
97d222ee-8ea1-44e4-ac84-a7a9aee9f1b7
public java.lang.String getCustomPickList41() { return this.customPickList41; }
89b1b0eb-eae2-4382-b09e-df31ff446e10
private void selectResearch() { selectedResearch = (Research)(view.getResearchList().getSelectedValue()); System.out.println("Research Selected: " + selectedResearch ); update(); }
c46abc45-fe69-40f5-89d8-980eb29aa517
public void setCustomBoolean127(java.lang.Boolean customBoolean127) { this.customBoolean127 = customBoolean127; }
99b45519-53f2-4af1-8105-bea028d3b3bc
public void setCustomText18(crmondemand.xml.opportunity.query.QueryType customText18) { this.customText18 = customText18; }
a7170ed0-29c5-4bac-98a8-dce4f833ef90
@Override public double getTemperatureInC() { return celciusReporter.getTemperature(); }
71ec018a-dfd1-44bc-9879-520211980c85
public crmondemand.xml.customobject3.query.QueryType getCustomCurrency18() { return this.customCurrency18; }
5592d684-9157-4e1e-a0b0-daa269929dd4
public void initializeItem(String name, String description, double weight, String parameterType, int parameter, boolean takeable, String type, String use, boolean questItem, String place) { Item item = new Item(name, description, weight, parameterType, parameter, takeable, type, use, questItem); items.put(item.getName(), item); if (rooms.containsKey(place)) { rooms.get(place).addItem(item); } else if (characters.containsKey(place)) { characters.get(place).addItem(item); } }
28695dde-69d5-42c1-85cd-693d559a2ebd
public crmondemand.xml.customobject6.query.QueryType getCustomObject12Name() { return this.customObject12Name; }
7a75455b-f131-468a-bc70-50a797c20016
private void jButton3_actionPerformed(ActionEvent e) { System.out.println("\njButton3_actionPerformed(ActionEvent e) called."); }
5e42e517-1fcb-4b27-9331-5ae6779fae1d
public crmondemand.xml.contact.query.QueryType getCustomDate4() { return this.customDate4; }
9e68092e-91c1-41b0-bbed-85d6b4569652
public java.lang.String getCustomPickList99() { return this.customPickList99; }
c0a107aa-2255-42f3-982e-3a703b6d535e
public java.util.Calendar getCustomDate30() { return this.customDate30; }
6596ca15-aaa0-4c06-936a-cea11b5bc0fe
private void initFields() { specName_ = ""; specFile_ = ""; }
c9209495-2370-4cfc-b40c-afd507eb7190
public void setCustomNumber16(java.math.BigDecimal customNumber16) { this.customNumber16 = customNumber16; }
a982f35e-028c-4d83-8b22-770a02bc69f8
public void setHouseholdSegment(java.lang.String householdSegment) { this.householdSegment = householdSegment; }
8273ab26-4e21-454a-b113-0b8c54c30c31
public void setCustomPickList95(java.lang.String customPickList95) { this.customPickList95 = customPickList95; }
caf303e7-7e87-46ce-8157-aa7ab51e93f4
public java.lang.String getCustomPhone3() { return this.customPhone3; }
94212401-d8e5-4707-8146-8e39cb732b45
public crmondemand.xml.customobject3.query.QueryType getCustomDate41() { return this.customDate41; }
0a7fec0a-cc85-498a-8670-050be8b67f78
public java.lang.String getCustomPickList42() { return this.customPickList42; }
37a389c5-6d59-49a2-9b3c-a7b90ee27810
public int getSetupId(byte slot) { MapleInventory setup = getPlayer().getInventory(MapleInventoryType.SETUP); return setup.getItem(slot).getItemId(); }
36b16cf8-31f5-438f-91b9-ef566216a853
public void setControlCarroceria(ControlCarroceria controlCarroceria) { this.controlCarroceria = controlCarroceria; }
ffb6fe65-2e58-42e0-8987-9f79646bb1a0
public abstract Object evaluate(Context c, HashMap map, DataFactory factory);
268f4433-b523-4a25-9fde-c7c3c0e19207
* @param unit The <code>Unit</code> to change the state of. * @param state The new <code>UnitState</code>. * @return An <code>Element</code> encapsulating this action. */ public Element changeState(ServerPlayer serverPlayer, Unit unit, UnitState state) { ChangeSet cs = new ChangeSet(); if (state == UnitState.FORTIFYING) { Tile tile = unit.getTile(); ServerColony colony = (tile.getOwningSettlement() instanceof Colony) ? (ServerColony) tile.getOwningSettlement() : null; if (colony != null && colony.getOwner() != unit.getOwner() && colony.isTileInUse(tile)) { colony.csEvictUser(unit, cs); } } unit.setState(state); cs.add(See.perhaps(), unit.getTile()); // Others might be able to see the unit. sendToOthers(serverPlayer, cs); return cs.build(serverPlayer); }
91031425-debe-4f5d-a1da-3a85f3581be9
public void setCustomBoolean16(java.lang.Boolean customBoolean16) { this.customBoolean16 = customBoolean16; }
8ec507d7-71f4-4796-8110-2233424c27a4
public void setCustomPickList87(crmondemand.xml.customobject6.query.QueryType customPickList87) { this.customPickList87 = customPickList87; }
95f74fc1-3551-4f6c-92a9-036760b3b04e
public crmondemand.xml.customobject3.query.QueryType getCustomNumber7() { return this.customNumber7; }
4d54d686-9e1c-4e00-8c6e-8be97a29fa32
public void setCreatedByIntegrationId(crmondemand.xml.contact.query.QueryType createdByIntegrationId) { this.createdByIntegrationId = createdByIntegrationId; }
c70fc58c-4024-4822-9e93-42dd4ef4d1ff
public void setCustomPickList97(crmondemand.xml.customobject6.query.QueryType customPickList97) { this.customPickList97 = customPickList97; }
ceac29c0-0939-4976-beba-cd62c23df1ea
@Override String addInto() { return null; }
06b0e9da-bdc9-47dc-8be6-76c495e7a266
public void setCustomNumber45(crmondemand.xml.customobject3.query.QueryType customNumber45) { this.customNumber45 = customNumber45; }
6d244bf6-eff4-4cf0-9621-e98f246fa784
public crmondemand.xml.contact.query.QueryType getCustomPickList56() { return this.customPickList56; }
ceac22e5-4f10-4e0f-8c80-7f0467645966
public void setCustomBoolean5(crmondemand.xml.customobject3.query.QueryType customBoolean5) { this.customBoolean5 = customBoolean5; }
bc140464-2da6-4e7c-9bfd-f7b56d7e0a0b
public void setBrokerProfileExternalSystemId(crmondemand.xml.contact.query.QueryType brokerProfileExternalSystemId) { this.brokerProfileExternalSystemId = brokerProfileExternalSystemId; }
ffbf05ab-bc86-4328-9c5d-cd0b389aa296
public crmondemand.xml.contact.query.QueryType getCustomDate17() { return this.customDate17; }
90a5bba9-5c25-4900-aa47-033264109244
public void setCustomDate13(java.util.Calendar customDate13) { this.customDate13 = customDate13; }
24ff9ef2-8122-4bd9-967c-cfcfd3ccddb1
public void setPrimaryProductName(java.lang.String primaryProductName) { this.primaryProductName = primaryProductName; }
67454495-6431-4eab-a93c-f276c8b6a472
public java.util.Calendar getCustomDate39() { return this.customDate39; }
8a90c4a9-426c-4799-b050-a7f95fa4630e
public crmondemand.xml.contact.query.QueryType getCustomCurrency16() { return this.customCurrency16; }
7f8837d6-9a05-4688-bbf2-907acd5bd270
public java.lang.String getIntegrationId() { return this.integrationId; }
d578ff4f-28a0-4db8-b4d7-36ea9d657c1e
public void setCustomText60(java.lang.String customText60) { this.customText60 = customText60; }
6ec947b6-bfca-4b3a-af62-a08f4dde0304
int getCoins(); } public static final class grant_coins_request extends com.google.protobuf.GeneratedMessage implements grant_coins_requestOrBuilder { // Use grant_coins_request.newBuilder() to construct. private grant_coins_request(Builder builder) { super(builder); } private grant_coins_request(boolean noInit) {} private static final grant_coins_request defaultInstance; public static grant_coins_request getDefaultInstance() { return defaultInstance; } public grant_coins_request getDefaultInstanceForType() { return defaultInstance; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return JSystemPiqi.internal_static_grant_coins_request_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return JSystemPiqi.internal_static_grant_coins_request_fieldAccessorTable; } private int bitField0_; // required string userid = 1; public static final int USERID_FIELD_NUMBER = 1; private java.lang.Object userid_; public boolean hasUserid() { return ((bitField0_ & 0x00000001) == 0x00000001); } public String getUserid() { java.lang.Object ref = userid_; if (ref instanceof String) { return (String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; String s = bs.toStringUtf8(); if (com.google.protobuf.Internal.isValidUtf8(bs)) { userid_ = s; } return s; } } private com.google.protobuf.ByteString getUseridBytes() { java.lang.Object ref = userid_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((String) ref); userid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } // required uint32 coins = 2; public static final int COINS_FIELD_NUMBER = 2; private int coins_; public boolean hasCoins() { return ((bitField0_ & 0x00000002) == 0x00000002); } public int getCoins() { return coins_; } private void initFields() { userid_ = ""; coins_ = 0; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized != -1) return isInitialized == 1; if (!hasUserid()) { memoizedIsInitialized = 0; return false; } if (!hasCoins()) { memoizedIsInitialized = 0; return false; } memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { getSerializedSize(); if (((bitField0_ & 0x00000001) == 0x00000001)) { output.writeBytes(1, getUseridBytes()); } if (((bitField0_ & 0x00000002) == 0x00000002)) { output.writeUInt32(2, coins_); } getUnknownFields().writeTo(output); } private int memoizedSerializedSize = -1; public int getSerializedSize() { int size = memoizedSerializedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) == 0x00000001)) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(1, getUseridBytes()); } if (((bitField0_ & 0x00000002) == 0x00000002)) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(2, coins_); } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; } private static final long serialVersionUID = 0L; @java.lang.Override protected java.lang.Object writeReplace() throws java.io.ObjectStreamException { return super.writeReplace(); } public static JSystemPiqi.grant_coins_request parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data).buildParsed(); } public static JSystemPiqi.grant_coins_request parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data, extensionRegistry) .buildParsed(); } public static JSystemPiqi.grant_coins_request parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data).buildParsed(); } public static JSystemPiqi.grant_coins_request parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data, extensionRegistry) .buildParsed(); } public static JSystemPiqi.grant_coins_request parseFrom(java.io.InputStream input) throws java.io.IOException { return newBuilder().mergeFrom(input).buildParsed(); } public static JSystemPiqi.grant_coins_request parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return newBuilder().mergeFrom(input, extensionRegistry) .buildParsed(); } public static JSystemPiqi.grant_coins_request parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { Builder builder = newBuilder(); if (builder.mergeDelimitedFrom(input)) { return builder.buildParsed(); } else { return null; } } public static JSystemPiqi.grant_coins_request parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { Builder builder = newBuilder(); if (builder.mergeDelimitedFrom(input, extensionRegistry)) { return builder.buildParsed(); } else { return null; } } public static JSystemPiqi.grant_coins_request parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return newBuilder().mergeFrom(input).buildParsed(); } public static JSystemPiqi.grant_coins_request parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return newBuilder().mergeFrom(input, extensionRegistry) .buildParsed(); } public static Builder newBuilder() { return Builder.create(); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder(JSystemPiqi.grant_coins_request prototype) { return newBuilder().mergeFrom(prototype); } public Builder toBuilder() { return newBuilder(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessage.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder<Builder> implements JSystemPiqi.grant_coins_requestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return JSystemPiqi.internal_static_grant_coins_request_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return JSystemPiqi.internal_static_grant_coins_request_fieldAccessorTable; } // Construct using JSystemPiqi.grant_coins_request.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { } } private static Builder create() { return new Builder(); } public Builder clear() { super.clear(); userid_ = ""; bitField0_ = (bitField0_ & ~0x00000001); coins_ = 0; bitField0_ = (bitField0_ & ~0x00000002); return this; } public Builder clone() { return create().mergeFrom(buildPartial()); } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return JSystemPiqi.grant_coins_request.getDescriptor(); } public JSystemPiqi.grant_coins_request getDefaultInstanceForType() { return JSystemPiqi.grant_coins_request.getDefaultInstance(); } public JSystemPiqi.grant_coins_request build() { JSystemPiqi.grant_coins_request result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } private JSystemPiqi.grant_coins_request buildParsed() throws com.google.protobuf.InvalidProtocolBufferException { JSystemPiqi.grant_coins_request result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException( result).asInvalidProtocolBufferException(); } return result; } public JSystemPiqi.grant_coins_request buildPartial() { JSystemPiqi.grant_coins_request result = new JSystemPiqi.grant_coins_request(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) == 0x00000001)) { to_bitField0_ |= 0x00000001; } result.userid_ = userid_; if (((from_bitField0_ & 0x00000002) == 0x00000002)) { to_bitField0_ |= 0x00000002; } result.coins_ = coins_; result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof JSystemPiqi.grant_coins_request) { return mergeFrom((JSystemPiqi.grant_coins_request)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(JSystemPiqi.grant_coins_request other) { if (other == JSystemPiqi.grant_coins_request.getDefaultInstance()) return this; if (other.hasUserid()) { setUserid(other.getUserid()); } if (other.hasCoins()) { setCoins(other.getCoins()); } this.mergeUnknownFields(other.getUnknownFields()); return this; } public final boolean isInitialized() { if (!hasUserid()) { return false; } if (!hasCoins()) { return false; } return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder( this.getUnknownFields()); while (true) { int tag = input.readTag(); switch (tag) { case 0: this.setUnknownFields(unknownFields.build()); onChanged(); return this; default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { this.setUnknownFields(unknownFields.build()); onChanged(); return this; } break; } case 10: { bitField0_ |= 0x00000001; userid_ = input.readBytes(); break; } case 16: { bitField0_ |= 0x00000002; coins_ = input.readUInt32(); break; } } } } private int bitField0_; // required string userid = 1; private java.lang.Object userid_ = ""; public boolean hasUserid() { return ((bitField0_ & 0x00000001) == 0x00000001); } public String getUserid() { java.lang.Object ref = userid_; if (!(ref instanceof String)) { String s = ((com.google.protobuf.ByteString) ref).toStringUtf8(); userid_ = s; return s; } else { return (String) ref; } } public Builder setUserid(String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000001; userid_ = value; onChanged(); return this; } public Builder clearUserid() { bitField0_ = (bitField0_ & ~0x00000001); userid_ = getDefaultInstance().getUserid(); onChanged(); return this; } void setUserid(com.google.protobuf.ByteString value) { bitField0_ |= 0x00000001; userid_ = value; onChanged(); } // required uint32 coins = 2; private int coins_ ; public boolean hasCoins() { return ((bitField0_ & 0x00000002) == 0x00000002); } public int getCoins() { return coins_; } public Builder setCoins(int value) { bitField0_ |= 0x00000002; coins_ = value; onChanged(); return this; } public Builder clearCoins() { bitField0_ = (bitField0_ & ~0x00000002); coins_ = 0; onChanged(); return this; } // @@protoc_insertion_point(builder_scope:grant_coins_request) } static { defaultInstance = new grant_coins_request(true); defaultInstance.initFields(); } // @@protoc_insertion_point(class_scope:grant_coins_request) } public interface buy_item_requestOrBuilder extends com.google.protobuf.MessageOrBuilder { // required string userid = 1; boolean hasUserid(); String getUserid(); // required uint32 shop_item_id = 2; boolean hasShopItemId(); int getShopItemId(); // required uint32 amount = 3; boolean hasAmount(); int getAmount(); } public static final class buy_item_request extends com.google.protobuf.GeneratedMessage implements buy_item_requestOrBuilder { // Use buy_item_request.newBuilder() to construct. private buy_item_request(Builder builder) { super(builder); } private buy_item_request(boolean noInit) {} private static final buy_item_request defaultInstance; public static buy_item_request getDefaultInstance() { return defaultInstance; } public buy_item_request getDefaultInstanceForType() { return defaultInstance; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return JSystemPiqi.internal_static_buy_item_request_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return JSystemPiqi.internal_static_buy_item_request_fieldAccessorTable; } private int bitField0_; // required string userid = 1; public static final int USERID_FIELD_NUMBER = 1; private java.lang.Object userid_; public boolean hasUserid() { return ((bitField0_ & 0x00000001) == 0x00000001); } public String getUserid() { java.lang.Object ref = userid_; if (ref instanceof String) { return (String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; String s = bs.toStringUtf8(); if (com.google.protobuf.Internal.isValidUtf8(bs)) { userid_ = s; } return s; } } private com.google.protobuf.ByteString getUseridBytes() { java.lang.Object ref = userid_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((String) ref); userid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } // required uint32 shop_item_id = 2; public static final int SHOP_ITEM_ID_FIELD_NUMBER = 2; private int shopItemId_; public boolean hasShopItemId() { return ((bitField0_ & 0x00000002) == 0x00000002); } public int getShopItemId() { return shopItemId_; } // required uint32 amount = 3; public static final int AMOUNT_FIELD_NUMBER = 3; private int amount_; public boolean hasAmount() { return ((bitField0_ & 0x00000004) == 0x00000004); } public int getAmount() { return amount_; } private void initFields() { userid_ = ""; shopItemId_ = 0; amount_ = 0; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized != -1) return isInitialized == 1; if (!hasUserid()) { memoizedIsInitialized = 0; return false; } if (!hasShopItemId()) { memoizedIsInitialized = 0; return false; } if (!hasAmount()) { memoizedIsInitialized = 0; return false; } memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { getSerializedSize(); if (((bitField0_ & 0x00000001) == 0x00000001)) { output.writeBytes(1, getUseridBytes()); } if (((bitField0_ & 0x00000002) == 0x00000002)) { output.writeUInt32(2, shopItemId_); } if (((bitField0_ & 0x00000004) == 0x00000004)) { output.writeUInt32(3, amount_); } getUnknownFields().writeTo(output); } private int memoizedSerializedSize = -1; public int getSerializedSize() { int size = memoizedSerializedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) == 0x00000001)) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(1, getUseridBytes()); } if (((bitField0_ & 0x00000002) == 0x00000002)) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(2, shopItemId_); } if (((bitField0_ & 0x00000004) == 0x00000004)) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(3, amount_); } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; } private static final long serialVersionUID = 0L; @java.lang.Override protected java.lang.Object writeReplace() throws java.io.ObjectStreamException { return super.writeReplace(); } public static JSystemPiqi.buy_item_request parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data).buildParsed(); } public static JSystemPiqi.buy_item_request parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data, extensionRegistry) .buildParsed(); } public static JSystemPiqi.buy_item_request parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data).buildParsed(); } public static JSystemPiqi.buy_item_request parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data, extensionRegistry) .buildParsed(); } public static JSystemPiqi.buy_item_request parseFrom(java.io.InputStream input) throws java.io.IOException { return newBuilder().mergeFrom(input).buildParsed(); } public static JSystemPiqi.buy_item_request parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return newBuilder().mergeFrom(input, extensionRegistry) .buildParsed(); } public static JSystemPiqi.buy_item_request parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { Builder builder = newBuilder(); if (builder.mergeDelimitedFrom(input)) { return builder.buildParsed(); } else { return null; } } public static JSystemPiqi.buy_item_request parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { Builder builder = newBuilder(); if (builder.mergeDelimitedFrom(input, extensionRegistry)) { return builder.buildParsed(); } else { return null; } } public static JSystemPiqi.buy_item_request parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return newBuilder().mergeFrom(input).buildParsed(); } public static JSystemPiqi.buy_item_request parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return newBuilder().mergeFrom(input, extensionRegistry) .buildParsed(); } public static Builder newBuilder() { return Builder.create(); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder(JSystemPiqi.buy_item_request prototype) { return newBuilder().mergeFrom(prototype); } public Builder toBuilder() { return newBuilder(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessage.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder<Builder> implements JSystemPiqi.buy_item_requestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return JSystemPiqi.internal_static_buy_item_request_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return JSystemPiqi.internal_static_buy_item_request_fieldAccessorTable; } // Construct using JSystemPiqi.buy_item_request.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { } } private static Builder create() { return new Builder(); } public Builder clear() { super.clear(); userid_ = ""; bitField0_ = (bitField0_ & ~0x00000001); shopItemId_ = 0; bitField0_ = (bitField0_ & ~0x00000002); amount_ = 0; bitField0_ = (bitField0_ & ~0x00000004); return this; } public Builder clone() { return create().mergeFrom(buildPartial()); } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return JSystemPiqi.buy_item_request.getDescriptor(); } public JSystemPiqi.buy_item_request getDefaultInstanceForType() { return JSystemPiqi.buy_item_request.getDefaultInstance(); } public JSystemPiqi.buy_item_request build() { JSystemPiqi.buy_item_request result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } private JSystemPiqi.buy_item_request buildParsed() throws com.google.protobuf.InvalidProtocolBufferException { JSystemPiqi.buy_item_request result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException( result).asInvalidProtocolBufferException(); } return result; } public JSystemPiqi.buy_item_request buildPartial() { JSystemPiqi.buy_item_request result = new JSystemPiqi.buy_item_request(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) == 0x00000001)) { to_bitField0_ |= 0x00000001; } result.userid_ = userid_; if (((from_bitField0_ & 0x00000002) == 0x00000002)) { to_bitField0_ |= 0x00000002; } result.shopItemId_ = shopItemId_; if (((from_bitField0_ & 0x00000004) == 0x00000004)) { to_bitField0_ |= 0x00000004; } result.amount_ = amount_; result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof JSystemPiqi.buy_item_request) { return mergeFrom((JSystemPiqi.buy_item_request)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(JSystemPiqi.buy_item_request other) { if (other == JSystemPiqi.buy_item_request.getDefaultInstance()) return this; if (other.hasUserid()) { setUserid(other.getUserid()); } if (other.hasShopItemId()) { setShopItemId(other.getShopItemId()); } if (other.hasAmount()) { setAmount(other.getAmount()); } this.mergeUnknownFields(other.getUnknownFields()); return this; } public final boolean isInitialized() { if (!hasUserid()) { return false; } if (!hasShopItemId()) { return false; } if (!hasAmount()) { return false; } return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder( this.getUnknownFields()); while (true) { int tag = input.readTag(); switch (tag) { case 0: this.setUnknownFields(unknownFields.build()); onChanged(); return this; default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { this.setUnknownFields(unknownFields.build()); onChanged(); return this; } break; } case 10: { bitField0_ |= 0x00000001; userid_ = input.readBytes(); break; } case 16: { bitField0_ |= 0x00000002; shopItemId_ = input.readUInt32(); break; } case 24: { bitField0_ |= 0x00000004; amount_ = input.readUInt32(); break; } } } } private int bitField0_; // required string userid = 1; private java.lang.Object userid_ = ""; public boolean hasUserid() { return ((bitField0_ & 0x00000001) == 0x00000001); } public String getUserid() { java.lang.Object ref = userid_; if (!(ref instanceof String)) { String s = ((com.google.protobuf.ByteString) ref).toStringUtf8(); userid_ = s; return s; } else { return (String) ref; } } public Builder setUserid(String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000001; userid_ = value; onChanged(); return this; } public Builder clearUserid() { bitField0_ = (bitField0_ & ~0x00000001); userid_ = getDefaultInstance().getUserid(); onChanged(); return this; } void setUserid(com.google.protobuf.ByteString value) { bitField0_ |= 0x00000001; userid_ = value; onChanged(); } // required uint32 shop_item_id = 2; private int shopItemId_ ; public boolean hasShopItemId() { return ((bitField0_ & 0x00000002) == 0x00000002); } public int getShopItemId() { return shopItemId_; } public Builder setShopItemId(int value) { bitField0_ |= 0x00000002; shopItemId_ = value; onChanged(); return this; } public Builder clearShopItemId() { bitField0_ = (bitField0_ & ~0x00000002); shopItemId_ = 0; onChanged(); return this; } // required uint32 amount = 3; private int amount_ ; public boolean hasAmount() { return ((bitField0_ & 0x00000004) == 0x00000004); } public int getAmount() { return amount_; } public Builder setAmount(int value) { bitField0_ |= 0x00000004; amount_ = value; onChanged(); return this; } public Builder clearAmount() { bitField0_ = (bitField0_ & ~0x00000004); amount_ = 0; onChanged(); return this; } // @@protoc_insertion_point(builder_scope:buy_item_request) } static { defaultInstance = new buy_item_request(true); defaultInstance.initFields(); } // @@protoc_insertion_point(class_scope:buy_item_request) } public interface system_requestOrBuilder extends com.google.protobuf.MessageOrBuilder { // optional .buy_item_request buy_item = 1; boolean hasBuyItem(); JSystemPiqi.buy_item_request getBuyItem(); JSystemPiqi.buy_item_requestOrBuilder getBuyItemOrBuilder(); // optional .grant_coins_request grant_coins = 2; boolean hasGrantCoins(); JSystemPiqi.grant_coins_request getGrantCoins(); JSystemPiqi.grant_coins_requestOrBuilder getGrantCoinsOrBuilder(); } public static final class system_request extends com.google.protobuf.GeneratedMessage implements system_requestOrBuilder { // Use system_request.newBuilder() to construct. private system_request(Builder builder) { super(builder); } private system_request(boolean noInit) {} private static final system_request defaultInstance; public static system_request getDefaultInstance() { return defaultInstance; } public system_request getDefaultInstanceForType() { return defaultInstance; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return JSystemPiqi.internal_static_system_request_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return JSystemPiqi.internal_static_system_request_fieldAccessorTable; } private int bitField0_; // optional .buy_item_request buy_item = 1; public static final int BUY_ITEM_FIELD_NUMBER = 1; private JSystemPiqi.buy_item_request buyItem_; public boolean hasBuyItem() { return ((bitField0_ & 0x00000001) == 0x00000001); } public JSystemPiqi.buy_item_request getBuyItem() { return buyItem_; } public JSystemPiqi.buy_item_requestOrBuilder getBuyItemOrBuilder() { return buyItem_; } // optional .grant_coins_request grant_coins = 2; public static final int GRANT_COINS_FIELD_NUMBER = 2; private JSystemPiqi.grant_coins_request grantCoins_; public boolean hasGrantCoins() { return ((bitField0_ & 0x00000002) == 0x00000002); } public JSystemPiqi.grant_coins_request getGrantCoins() { return grantCoins_; } public JSystemPiqi.grant_coins_requestOrBuilder getGrantCoinsOrBuilder() { return grantCoins_; } private void initFields() { buyItem_ = JSystemPiqi.buy_item_request.getDefaultInstance(); grantCoins_ = JSystemPiqi.grant_coins_request.getDefaultInstance(); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized != -1) return isInitialized == 1; if (hasBuyItem()) { if (!getBuyItem().isInitialized()) { memoizedIsInitialized = 0; return false; } } if (hasGrantCoins()) { if (!getGrantCoins().isInitialized()) { memoizedIsInitialized = 0; return false; } } memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { getSerializedSize(); if (((bitField0_ & 0x00000001) == 0x00000001)) { output.writeMessage(1, buyItem_); } if (((bitField0_ & 0x00000002) == 0x00000002)) { output.writeMessage(2, grantCoins_); } getUnknownFields().writeTo(output); } private int memoizedSerializedSize = -1; public int getSerializedSize() { int size = memoizedSerializedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) == 0x00000001)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, buyItem_); } if (((bitField0_ & 0x00000002) == 0x00000002)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, grantCoins_); } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; } private static final long serialVersionUID = 0L; @java.lang.Override protected java.lang.Object writeReplace() throws java.io.ObjectStreamException { return super.writeReplace(); } public static JSystemPiqi.system_request parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data).buildParsed(); } public static JSystemPiqi.system_request parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data, extensionRegistry) .buildParsed(); } public static JSystemPiqi.system_request parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data).buildParsed(); } public static JSystemPiqi.system_request parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data, extensionRegistry) .buildParsed(); } public static JSystemPiqi.system_request parseFrom(java.io.InputStream input) throws java.io.IOException { return newBuilder().mergeFrom(input).buildParsed(); } public static JSystemPiqi.system_request parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return newBuilder().mergeFrom(input, extensionRegistry) .buildParsed(); } public static JSystemPiqi.system_request parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { Builder builder = newBuilder(); if (builder.mergeDelimitedFrom(input)) { return builder.buildParsed(); } else { return null; } } public static JSystemPiqi.system_request parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { Builder builder = newBuilder(); if (builder.mergeDelimitedFrom(input, extensionRegistry)) { return builder.buildParsed(); } else { return null; } } public static JSystemPiqi.system_request parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return newBuilder().mergeFrom(input).buildParsed(); } public static JSystemPiqi.system_request parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return newBuilder().mergeFrom(input, extensionRegistry) .buildParsed(); } public static Builder newBuilder() { return Builder.create(); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder(JSystemPiqi.system_request prototype) { return newBuilder().mergeFrom(prototype); } public Builder toBuilder() { return newBuilder(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessage.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder<Builder> implements JSystemPiqi.system_requestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return JSystemPiqi.internal_static_system_request_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return JSystemPiqi.internal_static_system_request_fieldAccessorTable; } // Construct using JSystemPiqi.system_request.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { getBuyItemFieldBuilder(); getGrantCoinsFieldBuilder(); } } private static Builder create() { return new Builder(); } public Builder clear() { super.clear(); if (buyItemBuilder_ == null) { buyItem_ = JSystemPiqi.buy_item_request.getDefaultInstance(); } else { buyItemBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000001); if (grantCoinsBuilder_ == null) { grantCoins_ = JSystemPiqi.grant_coins_request.getDefaultInstance(); } else { grantCoinsBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000002); return this; } public Builder clone() { return create().mergeFrom(buildPartial()); } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return JSystemPiqi.system_request.getDescriptor(); } public JSystemPiqi.system_request getDefaultInstanceForType() { return JSystemPiqi.system_request.getDefaultInstance(); } public JSystemPiqi.system_request build() { JSystemPiqi.system_request result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } private JSystemPiqi.system_request buildParsed() throws com.google.protobuf.InvalidProtocolBufferException { JSystemPiqi.system_request result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException( result).asInvalidProtocolBufferException(); } return result; } public JSystemPiqi.system_request buildPartial() { JSystemPiqi.system_request result = new JSystemPiqi.system_request(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) == 0x00000001)) { to_bitField0_ |= 0x00000001; } if (buyItemBuilder_ == null) { result.buyItem_ = buyItem_; } else { result.buyItem_ = buyItemBuilder_.build(); } if (((from_bitField0_ & 0x00000002) == 0x00000002)) { to_bitField0_ |= 0x00000002; } if (grantCoinsBuilder_ == null) { result.grantCoins_ = grantCoins_; } else { result.grantCoins_ = grantCoinsBuilder_.build(); } result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof JSystemPiqi.system_request) { return mergeFrom((JSystemPiqi.system_request)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(JSystemPiqi.system_request other) { if (other == JSystemPiqi.system_request.getDefaultInstance()) return this; if (other.hasBuyItem()) { mergeBuyItem(other.getBuyItem()); } if (other.hasGrantCoins()) { mergeGrantCoins(other.getGrantCoins()); } this.mergeUnknownFields(other.getUnknownFields()); return this; } public final boolean isInitialized() { if (hasBuyItem()) { if (!getBuyItem().isInitialized()) { return false; } } if (hasGrantCoins()) { if (!getGrantCoins().isInitialized()) { return false; } } return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder( this.getUnknownFields()); while (true) { int tag = input.readTag(); switch (tag) { case 0: this.setUnknownFields(unknownFields.build()); onChanged(); return this; default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { this.setUnknownFields(unknownFields.build()); onChanged(); return this; } break; } case 10: { JSystemPiqi.buy_item_request.Builder subBuilder = JSystemPiqi.buy_item_request.newBuilder(); if (hasBuyItem()) { subBuilder.mergeFrom(getBuyItem()); } input.readMessage(subBuilder, extensionRegistry); setBuyItem(subBuilder.buildPartial()); break; } case 18: { JSystemPiqi.grant_coins_request.Builder subBuilder = JSystemPiqi.grant_coins_request.newBuilder(); if (hasGrantCoins()) { subBuilder.mergeFrom(getGrantCoins()); } input.readMessage(subBuilder, extensionRegistry); setGrantCoins(subBuilder.buildPartial()); break; } } } } private int bitField0_; // optional .buy_item_request buy_item = 1; private JSystemPiqi.buy_item_request buyItem_ = JSystemPiqi.buy_item_request.getDefaultInstance(); private com.google.protobuf.SingleFieldBuilder< JSystemPiqi.buy_item_request, JSystemPiqi.buy_item_request.Builder, JSystemPiqi.buy_item_requestOrBuilder> buyItemBuilder_; public boolean hasBuyItem() { return ((bitField0_ & 0x00000001) == 0x00000001); } public JSystemPiqi.buy_item_request getBuyItem() { if (buyItemBuilder_ == null) { return buyItem_; } else { return buyItemBuilder_.getMessage(); } } public Builder setBuyItem(JSystemPiqi.buy_item_request value) { if (buyItemBuilder_ == null) { if (value == null) { throw new NullPointerException(); } buyItem_ = value; onChanged(); } else { buyItemBuilder_.setMessage(value); } bitField0_ |= 0x00000001; return this; } public Builder setBuyItem( JSystemPiqi.buy_item_request.Builder builderForValue) { if (buyItemBuilder_ == null) { buyItem_ = builderForValue.build(); onChanged(); } else { buyItemBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000001; return this; } public Builder mergeBuyItem(JSystemPiqi.buy_item_request value) { if (buyItemBuilder_ == null) { if (((bitField0_ & 0x00000001) == 0x00000001) && buyItem_ != JSystemPiqi.buy_item_request.getDefaultInstance()) { buyItem_ = JSystemPiqi.buy_item_request.newBuilder(buyItem_).mergeFrom(value).buildPartial(); } else { buyItem_ = value; } onChanged(); } else { buyItemBuilder_.mergeFrom(value); } bitField0_ |= 0x00000001; return this; } public Builder clearBuyItem() { if (buyItemBuilder_ == null) { buyItem_ = JSystemPiqi.buy_item_request.getDefaultInstance(); onChanged(); } else { buyItemBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000001); return this; } public JSystemPiqi.buy_item_request.Builder getBuyItemBuilder() { bitField0_ |= 0x00000001; onChanged(); return getBuyItemFieldBuilder().getBuilder(); } public JSystemPiqi.buy_item_requestOrBuilder getBuyItemOrBuilder() { if (buyItemBuilder_ != null) { return buyItemBuilder_.getMessageOrBuilder(); } else { return buyItem_; } } private com.google.protobuf.SingleFieldBuilder< JSystemPiqi.buy_item_request, JSystemPiqi.buy_item_request.Builder, JSystemPiqi.buy_item_requestOrBuilder> getBuyItemFieldBuilder() { if (buyItemBuilder_ == null) { buyItemBuilder_ = new com.google.protobuf.SingleFieldBuilder< JSystemPiqi.buy_item_request, JSystemPiqi.buy_item_request.Builder, JSystemPiqi.buy_item_requestOrBuilder>( buyItem_, getParentForChildren(), isClean()); buyItem_ = null; } return buyItemBuilder_; } // optional .grant_coins_request grant_coins = 2; private JSystemPiqi.grant_coins_request grantCoins_ = JSystemPiqi.grant_coins_request.getDefaultInstance(); private com.google.protobuf.SingleFieldBuilder< JSystemPiqi.grant_coins_request, JSystemPiqi.grant_coins_request.Builder, JSystemPiqi.grant_coins_requestOrBuilder> grantCoinsBuilder_; public boolean hasGrantCoins() { return ((bitField0_ & 0x00000002) == 0x00000002); } public JSystemPiqi.grant_coins_request getGrantCoins() { if (grantCoinsBuilder_ == null) { return grantCoins_; } else { return grantCoinsBuilder_.getMessage(); } } public Builder setGrantCoins(JSystemPiqi.grant_coins_request value) { if (grantCoinsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } grantCoins_ = value; onChanged(); } else { grantCoinsBuilder_.setMessage(value); } bitField0_ |= 0x00000002; return this; } public Builder setGrantCoins( JSystemPiqi.grant_coins_request.Builder builderForValue) { if (grantCoinsBuilder_ == null) { grantCoins_ = builderForValue.build(); onChanged(); } else { grantCoinsBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; return this; } public Builder mergeGrantCoins(JSystemPiqi.grant_coins_request value) { if (grantCoinsBuilder_ == null) { if (((bitField0_ & 0x00000002) == 0x00000002) && grantCoins_ != JSystemPiqi.grant_coins_request.getDefaultInstance()) { grantCoins_ = JSystemPiqi.grant_coins_request.newBuilder(grantCoins_).mergeFrom(value).buildPartial(); } else { grantCoins_ = value; } onChanged(); } else { grantCoinsBuilder_.mergeFrom(value); } bitField0_ |= 0x00000002; return this; } public Builder clearGrantCoins() { if (grantCoinsBuilder_ == null) { grantCoins_ = JSystemPiqi.grant_coins_request.getDefaultInstance(); onChanged(); } else { grantCoinsBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000002); return this; } public JSystemPiqi.grant_coins_request.Builder getGrantCoinsBuilder() { bitField0_ |= 0x00000002; onChanged(); return getGrantCoinsFieldBuilder().getBuilder(); } public JSystemPiqi.grant_coins_requestOrBuilder getGrantCoinsOrBuilder() { if (grantCoinsBuilder_ != null) { return grantCoinsBuilder_.getMessageOrBuilder(); } else { return grantCoins_; } } private com.google.protobuf.SingleFieldBuilder< JSystemPiqi.grant_coins_request, JSystemPiqi.grant_coins_request.Builder, JSystemPiqi.grant_coins_requestOrBuilder> getGrantCoinsFieldBuilder() { if (grantCoinsBuilder_ == null) { grantCoinsBuilder_ = new com.google.protobuf.SingleFieldBuilder< JSystemPiqi.grant_coins_request, JSystemPiqi.grant_coins_request.Builder, JSystemPiqi.grant_coins_requestOrBuilder>( grantCoins_, getParentForChildren(), isClean()); grantCoins_ = null; } return grantCoinsBuilder_; } // @@protoc_insertion_point(builder_scope:system_request) } static { defaultInstance = new system_request(true); defaultInstance.initFields(); } // @@protoc_insertion_point(class_scope:system_request) } public interface system_errorOrBuilder extends com.google.protobuf.MessageOrBuilder { // optional uint32 code = 1; boolean hasCode(); int getCode(); // optional string description = 2; boolean hasDescription(); String getDescription(); } public static final class system_error extends com.google.protobuf.GeneratedMessage implements system_errorOrBuilder { // Use system_error.newBuilder() to construct. private system_error(Builder builder) { super(builder); } private system_error(boolean noInit) {} private static final system_error defaultInstance; public static system_error getDefaultInstance() { return defaultInstance; } public system_error getDefaultInstanceForType() { return defaultInstance; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return JSystemPiqi.internal_static_system_error_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return JSystemPiqi.internal_static_system_error_fieldAccessorTable; } private int bitField0_; // optional uint32 code = 1; public static final int CODE_FIELD_NUMBER = 1; private int code_; public boolean hasCode() { return ((bitField0_ & 0x00000001) == 0x00000001); } public int getCode() { return code_; } // optional string description = 2; public static final int DESCRIPTION_FIELD_NUMBER = 2; private java.lang.Object description_; public boolean hasDescription() { return ((bitField0_ & 0x00000002) == 0x00000002); } public String getDescription() { java.lang.Object ref = description_; if (ref instanceof String) { return (String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; String s = bs.toStringUtf8(); if (com.google.protobuf.Internal.isValidUtf8(bs)) { description_ = s; } return s; } } private com.google.protobuf.ByteString getDescriptionBytes() { java.lang.Object ref = description_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((String) ref); description_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } private void initFields() { code_ = 0; description_ = ""; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized != -1) return isInitialized == 1; memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { getSerializedSize(); if (((bitField0_ & 0x00000001) == 0x00000001)) { output.writeUInt32(1, code_); } if (((bitField0_ & 0x00000002) == 0x00000002)) { output.writeBytes(2, getDescriptionBytes()); } getUnknownFields().writeTo(output); } private int memoizedSerializedSize = -1; public int getSerializedSize() { int size = memoizedSerializedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) == 0x00000001)) { size += com.google.protobuf.CodedOutputStream .computeUInt32Size(1, code_); } if (((bitField0_ & 0x00000002) == 0x00000002)) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(2, getDescriptionBytes()); } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; } private static final long serialVersionUID = 0L; @java.lang.Override protected java.lang.Object writeReplace() throws java.io.ObjectStreamException { return super.writeReplace(); } public static JSystemPiqi.system_error parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data).buildParsed(); } public static JSystemPiqi.system_error parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data, extensionRegistry) .buildParsed(); } public static JSystemPiqi.system_error parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data).buildParsed(); } public static JSystemPiqi.system_error parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data, extensionRegistry) .buildParsed(); } public static JSystemPiqi.system_error parseFrom(java.io.InputStream input) throws java.io.IOException { return newBuilder().mergeFrom(input).buildParsed(); } public static JSystemPiqi.system_error parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return newBuilder().mergeFrom(input, extensionRegistry) .buildParsed(); } public static JSystemPiqi.system_error parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { Builder builder = newBuilder(); if (builder.mergeDelimitedFrom(input)) { return builder.buildParsed(); } else { return null; } } public static JSystemPiqi.system_error parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { Builder builder = newBuilder(); if (builder.mergeDelimitedFrom(input, extensionRegistry)) { return builder.buildParsed(); } else { return null; } } public static JSystemPiqi.system_error parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return newBuilder().mergeFrom(input).buildParsed(); } public static JSystemPiqi.system_error parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return newBuilder().mergeFrom(input, extensionRegistry) .buildParsed(); } public static Builder newBuilder() { return Builder.create(); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder(JSystemPiqi.system_error prototype) { return newBuilder().mergeFrom(prototype); } public Builder toBuilder() { return newBuilder(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessage.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder<Builder> implements JSystemPiqi.system_errorOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return JSystemPiqi.internal_static_system_error_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return JSystemPiqi.internal_static_system_error_fieldAccessorTable; } // Construct using JSystemPiqi.system_error.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { } } private static Builder create() { return new Builder(); } public Builder clear() { super.clear(); code_ = 0; bitField0_ = (bitField0_ & ~0x00000001); description_ = ""; bitField0_ = (bitField0_ & ~0x00000002); return this; } public Builder clone() { return create().mergeFrom(buildPartial()); } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return JSystemPiqi.system_error.getDescriptor(); } public JSystemPiqi.system_error getDefaultInstanceForType() { return JSystemPiqi.system_error.getDefaultInstance(); } public JSystemPiqi.system_error build() { JSystemPiqi.system_error result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } private JSystemPiqi.system_error buildParsed() throws com.google.protobuf.InvalidProtocolBufferException { JSystemPiqi.system_error result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException( result).asInvalidProtocolBufferException(); } return result; } public JSystemPiqi.system_error buildPartial() { JSystemPiqi.system_error result = new JSystemPiqi.system_error(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) == 0x00000001)) { to_bitField0_ |= 0x00000001; } result.code_ = code_; if (((from_bitField0_ & 0x00000002) == 0x00000002)) { to_bitField0_ |= 0x00000002; } result.description_ = description_; result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof JSystemPiqi.system_error) { return mergeFrom((JSystemPiqi.system_error)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(JSystemPiqi.system_error other) { if (other == JSystemPiqi.system_error.getDefaultInstance()) return this; if (other.hasCode()) { setCode(other.getCode()); } if (other.hasDescription()) { setDescription(other.getDescription()); } this.mergeUnknownFields(other.getUnknownFields()); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder( this.getUnknownFields()); while (true) { int tag = input.readTag(); switch (tag) { case 0: this.setUnknownFields(unknownFields.build()); onChanged(); return this; default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { this.setUnknownFields(unknownFields.build()); onChanged(); return this; } break; } case 8: { bitField0_ |= 0x00000001; code_ = input.readUInt32(); break; } case 18: { bitField0_ |= 0x00000002; description_ = input.readBytes(); break; } } } } private int bitField0_; // optional uint32 code = 1; private int code_ ; public boolean hasCode() { return ((bitField0_ & 0x00000001) == 0x00000001); } public int getCode() { return code_; } public Builder setCode(int value) { bitField0_ |= 0x00000001; code_ = value; onChanged(); return this; } public Builder clearCode() { bitField0_ = (bitField0_ & ~0x00000001); code_ = 0; onChanged(); return this; } // optional string description = 2; private java.lang.Object description_ = ""; public boolean hasDescription() { return ((bitField0_ & 0x00000002) == 0x00000002); } public String getDescription() { java.lang.Object ref = description_; if (!(ref instanceof String)) { String s = ((com.google.protobuf.ByteString) ref).toStringUtf8(); description_ = s; return s; } else { return (String) ref; } } public Builder setDescription(String value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000002; description_ = value; onChanged(); return this; } public Builder clearDescription() { bitField0_ = (bitField0_ & ~0x00000002); description_ = getDefaultInstance().getDescription(); onChanged(); return this; } void setDescription(com.google.protobuf.ByteString value) { bitField0_ |= 0x00000002; description_ = value; onChanged(); } // @@protoc_insertion_point(builder_scope:system_error) } static { defaultInstance = new system_error(true); defaultInstance.initFields(); } // @@protoc_insertion_point(class_scope:system_error) } public interface system_responseOrBuilder extends com.google.protobuf.MessageOrBuilder { // optional bool ok = 1; boolean hasOk(); boolean getOk(); // optional .system_error error = 2; boolean hasError(); JSystemPiqi.system_error getError(); JSystemPiqi.system_errorOrBuilder getErrorOrBuilder(); } public static final class system_response extends com.google.protobuf.GeneratedMessage implements system_responseOrBuilder { // Use system_response.newBuilder() to construct. private system_response(Builder builder) { super(builder); } private system_response(boolean noInit) {} private static final system_response defaultInstance; public static system_response getDefaultInstance() { return defaultInstance; } public system_response getDefaultInstanceForType() { return defaultInstance; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return JSystemPiqi.internal_static_system_response_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return JSystemPiqi.internal_static_system_response_fieldAccessorTable; } private int bitField0_; // optional bool ok = 1; public static final int OK_FIELD_NUMBER = 1; private boolean ok_; public boolean hasOk() { return ((bitField0_ & 0x00000001) == 0x00000001); } public boolean getOk() { return ok_; } // optional .system_error error = 2; public static final int ERROR_FIELD_NUMBER = 2; private JSystemPiqi.system_error error_; public boolean hasError() { return ((bitField0_ & 0x00000002) == 0x00000002); } public JSystemPiqi.system_error getError() { return error_; } public JSystemPiqi.system_errorOrBuilder getErrorOrBuilder() { return error_; } private void initFields() { ok_ = false; error_ = JSystemPiqi.system_error.getDefaultInstance(); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized != -1) return isInitialized == 1; memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { getSerializedSize(); if (((bitField0_ & 0x00000001) == 0x00000001)) { output.writeBool(1, ok_); } if (((bitField0_ & 0x00000002) == 0x00000002)) { output.writeMessage(2, error_); } getUnknownFields().writeTo(output); } private int memoizedSerializedSize = -1; public int getSerializedSize() { int size = memoizedSerializedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) == 0x00000001)) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(1, ok_); } if (((bitField0_ & 0x00000002) == 0x00000002)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, error_); } size += getUnknownFields().getSerializedSize(); memoizedSerializedSize = size; return size; } private static final long serialVersionUID = 0L; @java.lang.Override protected java.lang.Object writeReplace() throws java.io.ObjectStreamException { return super.writeReplace(); } public static JSystemPiqi.system_response parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data).buildParsed(); } public static JSystemPiqi.system_response parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data, extensionRegistry) .buildParsed(); } public static JSystemPiqi.system_response parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data).buildParsed(); } public static JSystemPiqi.system_response parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return newBuilder().mergeFrom(data, extensionRegistry) .buildParsed(); } public static JSystemPiqi.system_response parseFrom(java.io.InputStream input) throws java.io.IOException { return newBuilder().mergeFrom(input).buildParsed(); } public static JSystemPiqi.system_response parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return newBuilder().mergeFrom(input, extensionRegistry) .buildParsed(); } public static JSystemPiqi.system_response parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { Builder builder = newBuilder(); if (builder.mergeDelimitedFrom(input)) { return builder.buildParsed(); } else { return null; } } public static JSystemPiqi.system_response parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { Builder builder = newBuilder(); if (builder.mergeDelimitedFrom(input, extensionRegistry)) { return builder.buildParsed(); } else { return null; } } public static JSystemPiqi.system_response parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return newBuilder().mergeFrom(input).buildParsed(); } public static JSystemPiqi.system_response parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return newBuilder().mergeFrom(input, extensionRegistry) .buildParsed(); } public static Builder newBuilder() { return Builder.create(); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder(JSystemPiqi.system_response prototype) { return newBuilder().mergeFrom(prototype); } public Builder toBuilder() { return newBuilder(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessage.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder<Builder> implements JSystemPiqi.system_responseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return JSystemPiqi.internal_static_system_response_descriptor; } protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return JSystemPiqi.internal_static_system_response_fieldAccessorTable; } // Construct using JSystemPiqi.system_response.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) { getErrorFieldBuilder(); } } private static Builder create() { return new Builder(); } public Builder clear() { super.clear(); ok_ = false; bitField0_ = (bitField0_ & ~0x00000001); if (errorBuilder_ == null) { error_ = JSystemPiqi.system_error.getDefaultInstance(); } else { errorBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000002); return this; } public Builder clone() { return create().mergeFrom(buildPartial()); } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return JSystemPiqi.system_response.getDescriptor(); } public JSystemPiqi.system_response getDefaultInstanceForType() { return JSystemPiqi.system_response.getDefaultInstance(); } public JSystemPiqi.system_response build() { JSystemPiqi.system_response result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } private JSystemPiqi.system_response buildParsed() throws com.google.protobuf.InvalidProtocolBufferException { JSystemPiqi.system_response result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException( result).asInvalidProtocolBufferException(); } return result; } public JSystemPiqi.system_response buildPartial() { JSystemPiqi.system_response result = new JSystemPiqi.system_response(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) == 0x00000001)) { to_bitField0_ |= 0x00000001; } result.ok_ = ok_; if (((from_bitField0_ & 0x00000002) == 0x00000002)) { to_bitField0_ |= 0x00000002; } if (errorBuilder_ == null) { result.error_ = error_; } else { result.error_ = errorBuilder_.build(); } result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof JSystemPiqi.system_response) { return mergeFrom((JSystemPiqi.system_response)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(JSystemPiqi.system_response other) { if (other == JSystemPiqi.system_response.getDefaultInstance()) return this; if (other.hasOk()) { setOk(other.getOk()); } if (other.hasError()) { mergeError(other.getError()); } this.mergeUnknownFields(other.getUnknownFields()); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder( this.getUnknownFields()); while (true) { int tag = input.readTag(); switch (tag) { case 0: this.setUnknownFields(unknownFields.build()); onChanged(); return this; default: { if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) { this.setUnknownFields(unknownFields.build()); onChanged(); return this; } break; } case 8: { bitField0_ |= 0x00000001; ok_ = input.readBool(); break; } case 18: { JSystemPiqi.system_error.Builder subBuilder = JSystemPiqi.system_error.newBuilder(); if (hasError()) { subBuilder.mergeFrom(getError()); } input.readMessage(subBuilder, extensionRegistry); setError(subBuilder.buildPartial()); break; } } } } private int bitField0_; // optional bool ok = 1; private boolean ok_ ; public boolean hasOk() { return ((bitField0_ & 0x00000001) == 0x00000001); } public boolean getOk() { return ok_; } public Builder setOk(boolean value) { bitField0_ |= 0x00000001; ok_ = value; onChanged(); return this; } public Builder clearOk() { bitField0_ = (bitField0_ & ~0x00000001); ok_ = false; onChanged(); return this; } // optional .system_error error = 2; private JSystemPiqi.system_error error_ = JSystemPiqi.system_error.getDefaultInstance(); private com.google.protobuf.SingleFieldBuilder< JSystemPiqi.system_error, JSystemPiqi.system_error.Builder, JSystemPiqi.system_errorOrBuilder> errorBuilder_; public boolean hasError() { return ((bitField0_ & 0x00000002) == 0x00000002); } public JSystemPiqi.system_error getError() { if (errorBuilder_ == null) { return error_; } else { return errorBuilder_.getMessage(); } } public Builder setError(JSystemPiqi.system_error value) { if (errorBuilder_ == null) { if (value == null) { throw new NullPointerException(); } error_ = value; onChanged(); } else { errorBuilder_.setMessage(value); } bitField0_ |= 0x00000002; return this; } public Builder setError( JSystemPiqi.system_error.Builder builderForValue) { if (errorBuilder_ == null) { error_ = builderForValue.build(); onChanged(); } else { errorBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; return this; } public Builder mergeError(JSystemPiqi.system_error value) { if (errorBuilder_ == null) { if (((bitField0_ & 0x00000002) == 0x00000002) && error_ != JSystemPiqi.system_error.getDefaultInstance()) { error_ = JSystemPiqi.system_error.newBuilder(error_).mergeFrom(value).buildPartial(); } else { error_ = value; } onChanged(); } else { errorBuilder_.mergeFrom(value); } bitField0_ |= 0x00000002; return this; } public Builder clearError() { if (errorBuilder_ == null) { error_ = JSystemPiqi.system_error.getDefaultInstance(); onChanged(); } else { errorBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000002); return this; } public JSystemPiqi.system_error.Builder getErrorBuilder() { bitField0_ |= 0x00000002; onChanged(); return getErrorFieldBuilder().getBuilder(); } public JSystemPiqi.system_errorOrBuilder getErrorOrBuilder() { if (errorBuilder_ != null) { return errorBuilder_.getMessageOrBuilder(); } else { return error_; } } private com.google.protobuf.SingleFieldBuilder< JSystemPiqi.system_error, JSystemPiqi.system_error.Builder, JSystemPiqi.system_errorOrBuilder> getErrorFieldBuilder() { if (errorBuilder_ == null) { errorBuilder_ = new com.google.protobuf.SingleFieldBuilder< JSystemPiqi.system_error, JSystemPiqi.system_error.Builder, JSystemPiqi.system_errorOrBuilder>( error_, getParentForChildren(), isClean()); error_ = null; } return errorBuilder_; } // @@protoc_insertion_point(builder_scope:system_response) } static { defaultInstance = new system_response(true); defaultInstance.initFields(); } // @@protoc_insertion_point(class_scope:system_response) } private static com.google.protobuf.Descriptors.Descriptor internal_static_grant_coins_request_descriptor; private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_grant_coins_request_fieldAccessorTable; private static com.google.protobuf.Descriptors.Descriptor internal_static_buy_item_request_descriptor; private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_buy_item_request_fieldAccessorTable; private static com.google.protobuf.Descriptors.Descriptor internal_static_system_request_descriptor; private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_system_request_fieldAccessorTable; private static com.google.protobuf.Descriptors.Descriptor internal_static_system_error_descriptor; private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_system_error_fieldAccessorTable; private static com.google.protobuf.Descriptors.Descriptor internal_static_system_response_descriptor; private static com.google.protobuf.GeneratedMessage.FieldAccessorTable internal_static_system_response_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { return descriptor; } private static com.google.protobuf.Descriptors.FileDescriptor descriptor; static { java.lang.String[] descriptorData = { "\n\023j-system.piqi.proto\"4\n\023grant_coins_req" + "uest\022\016\n\006userid\030\001 \002(\t\022\r\n\005coins\030\002 \002(\r\"H\n\020b" + "uy_item_request\022\016\n\006userid\030\001 \002(\t\022\024\n\014shop_" + "item_id\030\002 \002(\r\022\016\n\006amount\030\003 \002(\r\"`\n\016system_" + "request\022#\n\010buy_item\030\001 \001(\0132\021.buy_item_req" + "uest\022)\n\013grant_coins\030\002 \001(\0132\024.grant_coins_" + "request\"1\n\014system_error\022\014\n\004code\030\001 \001(\r\022\023\n" + "\013description\030\002 \001(\t\";\n\017system_response\022\n\n" + "\002ok\030\001 \001(\010\022\034\n\005error\030\002 \001(\0132\r.system_error" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { public com.google.protobuf.ExtensionRegistry assignDescriptors( com.google.protobuf.Descriptors.FileDescriptor root) { descriptor = root; internal_static_grant_coins_request_descriptor = getDescriptor().getMessageTypes().get(0); internal_static_grant_coins_request_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_grant_coins_request_descriptor, new java.lang.String[] { "Userid", "Coins", }, JSystemPiqi.grant_coins_request.class, JSystemPiqi.grant_coins_request.Builder.class); internal_static_buy_item_request_descriptor = getDescriptor().getMessageTypes().get(1); internal_static_buy_item_request_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_buy_item_request_descriptor, new java.lang.String[] { "Userid", "ShopItemId", "Amount", }, JSystemPiqi.buy_item_request.class, JSystemPiqi.buy_item_request.Builder.class); internal_static_system_request_descriptor = getDescriptor().getMessageTypes().get(2); internal_static_system_request_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_system_request_descriptor, new java.lang.String[] { "BuyItem", "GrantCoins", }, JSystemPiqi.system_request.class, JSystemPiqi.system_request.Builder.class); internal_static_system_error_descriptor = getDescriptor().getMessageTypes().get(3); internal_static_system_error_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_system_error_descriptor, new java.lang.String[] { "Code", "Description", }, JSystemPiqi.system_error.class, JSystemPiqi.system_error.Builder.class); internal_static_system_response_descriptor = getDescriptor().getMessageTypes().get(4); internal_static_system_response_fieldAccessorTable = new com.google.protobuf.GeneratedMessage.FieldAccessorTable( internal_static_system_response_descriptor, new java.lang.String[] { "Ok", "Error", }, JSystemPiqi.system_response.class, JSystemPiqi.system_response.Builder.class); return null; } }; com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { }
174952c9-2689-4e26-a216-cf21b9efb5c0
public crmondemand.xml.contact.query.QueryType getCustomText67() { return this.customText67; }
405b9691-73c4-4160-ac04-5a5ce1fb7dce
public crmondemand.xml.opportunity.query.QueryType getCustomInteger12() { return this.customInteger12; }
d86fad3a-a522-4481-b9de-18e2673a96ba
public crmondemand.xml.customobject3.query.QueryType getCustomPickList83() { return this.customPickList83; }
698708a0-a0f1-4c83-b945-b5ad7c535698
@Override public int getQualifyingLevel(String ID, boolean checkAll, String abilityID) { if(completeAbleMap.containsKey(ID)) { final Map<String,AbilityMapping> ableMap=completeAbleMap.get(ID); if(ableMap.containsKey(abilityID)) return ableMap.get(abilityID).qualLevel(); } if((checkAll)&&(completeAbleMap.containsKey("All"))) { final Map<String,AbilityMapping> ableMap=completeAbleMap.get("All"); if(ableMap.containsKey(abilityID)) { final int qualLevel = ableMap.get(abilityID).qualLevel(); final CharClass C=CMClass.getCharClass(ID); if((C!=null)&&(C.getLevelCap()>=0)) return qualLevel>C.getLevelCap()?-1:qualLevel; return qualLevel; } } return -1; }
0fc42410-1aa8-4f12-90dc-f2665c71850b
public void setCustomDate8(java.util.Calendar customDate8) { this.customDate8 = customDate8; }
6aec0219-532e-4ecf-a091-4f890b5136f0
public void setCustomBoolean27(crmondemand.xml.customobject6.query.QueryType customBoolean27) { this.customBoolean27 = customBoolean27; }
aa14ad56-30f9-497d-9cf4-64f7b4ef83e4
public void setCustomPickList96(java.lang.String customPickList96) { this.customPickList96 = customPickList96; }
d931bea0-3342-4cb9-86bf-c7c6408ae890
public static void PyThreadState_Clear(Pointer<PyThreadState > PyThreadStatePtr1) { PyThreadState_Clear(Pointer.getPeer(PyThreadStatePtr1)); }
36f08c0e-2428-4364-90dc-ff3ca700278c
public void setCustomDate36(crmondemand.xml.opportunity.query.QueryType customDate36) { this.customDate36 = customDate36; }
c570f131-b315-4123-8a8e-55105aa96bad
public void setCustomObject1Type(java.lang.String customObject1Type) { this.customObject1Type = customObject1Type; }
9bce0c24-c9e0-4a95-827e-6c8bf8220e15
@After public void tearDown() throws Exception { }
c98b888b-fb1c-4606-b026-c4d4c39e2d36
public java.util.Calendar getCustomDate29() { return this.customDate29; }
cfc04e16-8b84-40d6-9726-1e6e47ea6fa1
public Builder mergeFrom(org.bwapi.proxy.messages.TerrainMessages.StaticTerrainInfo other) { if (other == org.bwapi.proxy.messages.TerrainMessages.StaticTerrainInfo.getDefaultInstance()) return this; if (regionsBuilder_ == null) { if (!other.regions_.isEmpty()) { if (regions_.isEmpty()) { regions_ = other.regions_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureRegionsIsMutable(); regions_.addAll(other.regions_); } onChanged(); } } else { if (!other.regions_.isEmpty()) { if (regionsBuilder_.isEmpty()) { regionsBuilder_.dispose(); regionsBuilder_ = null; regions_ = other.regions_; bitField0_ = (bitField0_ & ~0x00000001); regionsBuilder_ = com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? getRegionsFieldBuilder() : null; } else { regionsBuilder_.addAllMessages(other.regions_); } } } if (chokepointsBuilder_ == null) { if (!other.chokepoints_.isEmpty()) { if (chokepoints_.isEmpty()) { chokepoints_ = other.chokepoints_; bitField0_ = (bitField0_ & ~0x00000002); } else { ensureChokepointsIsMutable(); chokepoints_.addAll(other.chokepoints_); } onChanged(); } } else { if (!other.chokepoints_.isEmpty()) { if (chokepointsBuilder_.isEmpty()) { chokepointsBuilder_.dispose(); chokepointsBuilder_ = null; chokepoints_ = other.chokepoints_; bitField0_ = (bitField0_ & ~0x00000002); chokepointsBuilder_ = com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? getChokepointsFieldBuilder() : null; } else { chokepointsBuilder_.addAllMessages(other.chokepoints_); } } } if (baseLocationsBuilder_ == null) { if (!other.baseLocations_.isEmpty()) { if (baseLocations_.isEmpty()) { baseLocations_ = other.baseLocations_; bitField0_ = (bitField0_ & ~0x00000004); } else { ensureBaseLocationsIsMutable(); baseLocations_.addAll(other.baseLocations_); } onChanged(); } } else { if (!other.baseLocations_.isEmpty()) { if (baseLocationsBuilder_.isEmpty()) { baseLocationsBuilder_.dispose(); baseLocationsBuilder_ = null; baseLocations_ = other.baseLocations_; bitField0_ = (bitField0_ & ~0x00000004); baseLocationsBuilder_ = com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? getBaseLocationsFieldBuilder() : null; } else { baseLocationsBuilder_.addAllMessages(other.baseLocations_); } } } if (!other.startLocations_.isEmpty()) { if (startLocations_.isEmpty()) { startLocations_ = other.startLocations_; bitField0_ = (bitField0_ & ~0x00000008); } else { ensureStartLocationsIsMutable(); startLocations_.addAll(other.startLocations_); } onChanged(); } if (unwalkablePolygonBuilder_ == null) { if (!other.unwalkablePolygon_.isEmpty()) { if (unwalkablePolygon_.isEmpty()) { unwalkablePolygon_ = other.unwalkablePolygon_; bitField0_ = (bitField0_ & ~0x00000010); } else { ensureUnwalkablePolygonIsMutable(); unwalkablePolygon_.addAll(other.unwalkablePolygon_); } onChanged(); } } else { if (!other.unwalkablePolygon_.isEmpty()) { if (unwalkablePolygonBuilder_.isEmpty()) { unwalkablePolygonBuilder_.dispose(); unwalkablePolygonBuilder_ = null; unwalkablePolygon_ = other.unwalkablePolygon_; bitField0_ = (bitField0_ & ~0x00000010); unwalkablePolygonBuilder_ = com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ? getUnwalkablePolygonFieldBuilder() : null; } else { unwalkablePolygonBuilder_.addAllMessages(other.unwalkablePolygon_); } } } this.mergeUnknownFields(other.getUnknownFields()); return this; }
8322dc63-9c4f-4fa4-b099-24fdf2ba440f
public void setCustomNumber5(java.math.BigDecimal customNumber5) { this.customNumber5 = customNumber5; }
b32ea49f-72f6-4cc4-bd58-1ad0a61a0482
public java.lang.String getCustomObject3Name() { return this.customObject3Name; }
d09314ec-3ee8-426b-9fee-cd9d56642fe6
public void setCustomNumber48(crmondemand.xml.opportunity.query.QueryType customNumber48) { this.customNumber48 = customNumber48; }
4fd900e5-8d08-42d8-ad01-2f8a1593af1c
@Override public String getValueOrTargetHelp() { return getValue(); }
a2fd43aa-29cd-47ec-b776-7e5d44dcdb74
public void setUpdatedByAlias(crmondemand.xml.customobject6.query.QueryType updatedByAlias) { this.updatedByAlias = updatedByAlias; }
9fd38539-0517-4c28-bf25-6fa3d2a23ce1
public void setCustomInteger22(java.lang.Integer customInteger22) { this.customInteger22 = customInteger22; }
3ddc0ac7-b836-4f45-abdd-918b917e226a
public java.lang.Boolean getCustomBoolean30() { return this.customBoolean30; }