id
stringlengths
36
36
text
stringlengths
1
1.25M
ebb9e304-34f2-431e-bd02-e0e09f36eab6
public void setCustomBoolean13(java.lang.Boolean customBoolean13) { this.customBoolean13 = customBoolean13; }
65a755fa-bb99-4d9c-b6dd-2eb170f69f74
public java.lang.Integer getCustomInteger27() { return this.customInteger27; }
637184c9-8cc2-4017-90d7-f1b87cc5e6df
public java.lang.String getPartnerIntegrationId() { return this.partnerIntegrationId; }
4ea47e9a-fa01-45c5-a800-f690050322f6
public crmondemand.xml.contact.query.QueryType getCustomPickList60() { return this.customPickList60; }
43e9731d-cf9f-499d-833c-8dc8f6ed1311
public void setFieldValue(_Fields field, Object value) { switch (field) { } }
2baccfd6-8f03-4d84-ab6d-079dd4ec43f1
public void setCustomPickList87(crmondemand.xml.contact.query.QueryType customPickList87) { this.customPickList87 = customPickList87; }
5e82f0f1-3579-49cd-ad1e-928cf673c966
public void setServiceRequestIntegrationId(crmondemand.xml.customobject6.query.QueryType serviceRequestIntegrationId) { this.serviceRequestIntegrationId = serviceRequestIntegrationId; }
c3ff3f21-15fb-4da9-a94e-9a4b596bea50
private void InitializeButtonMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_InitializeButtonMouseClicked Initialize(); }//GEN-LAST:event_InitializeButtonMouseClicked
6093b582-05f8-416a-9099-5be2176abbb5
public crmondemand.xml.contact.query.QueryType getCustomNumber21() { return this.customNumber21; }
456e4ad8-a9a6-425c-b237-91862ab35669
public crmondemand.xml.customobject3.query.QueryType getCustomPickList6() { return this.customPickList6; }
61b12547-70c5-402b-9c84-38db19439904
public crmondemand.xml.customobject6.query.QueryType getCustomInteger4() { return this.customInteger4; }
ef82ecb8-7c72-46ab-afe5-f45a08d3c9a3
public java.math.BigDecimal getCustomNumber17() { return this.customNumber17; }
0b3ba50f-6521-4c28-a535-2236969f6c9e
public java.lang.Integer getCustomInteger26() { return this.customInteger26; }
908883df-9b99-473f-82cf-de3c0d4284b6
public crmondemand.xml.opportunity.query.QueryType getCustomBoolean32() { return this.customBoolean32; }
ce389805-d06d-46c0-82e7-96becd44ed85
public void setCustomText64(java.lang.String customText64) { this.customText64 = customText64; }
d1bfa42d-2fe1-418b-b08d-3ebf21384217
public void setCustomPickList11(crmondemand.xml.customobject6.query.QueryType customPickList11) { this.customPickList11 = customPickList11; }
2cdbc29c-1be0-41c3-8098-2b1fce9b31fe
public void setCustomNumber3(crmondemand.xml.contact.query.QueryType customNumber3) { this.customNumber3 = customNumber3; }
e3429a31-064c-410e-9480-9227263bc547
void setLooping(int sourceId, boolean looping) { AL10.alSourcei(sourceId, AL10.AL_LOOPING, looping ? AL10.AL_TRUE : AL10.AL_FALSE); int error = AL10.alGetError(); if (error != AL10.AL_NO_ERROR) { this.logger.logError(LOGGING_SOURCE, "unable to set looping of open al source, error: " + error); } }
a63c6d10-3faa-4a6c-8f9f-13580704cf96
public void setFinancialAccountFinancialAccount(java.lang.String financialAccountFinancialAccount) { this.financialAccountFinancialAccount = financialAccountFinancialAccount; }
660a25b0-4080-4d0c-845c-613d8596d406
public java.lang.String getCustomPhone14() { return this.customPhone14; }
6a4c4369-83f6-4bfd-a12f-428611a332ee
public void alquilarCarro2( int pNumeroHoras ) { alquilerCarros.registrarAlquilerCarro2( pNumeroHoras ); panelConsolidado.actualizar( alquilerCarros ); }
59f9467e-fe41-4b43-84be-a61f8aa6ac8d
@Override public int getRuleIndex() { return RULE_methodDeclaration; }
7283b348-3de2-4609-882a-96de06ea7cd5
public java.lang.String getOriginatingPartnerId() { return this.originatingPartnerId; }
01b4fd44-1522-4b58-a4f4-c779e4372432
public crmondemand.xml.customobject6.query.QueryType getCustomText127() { return this.customText127; }
2420c066-666a-40bf-9fcb-34a973a878c2
@Override public Object getBean() { return RadialBargraph.this; }
31d3f06d-4ad4-494a-b9d3-8f46288042dd
public void setCustomObject5Id(crmondemand.xml.customobject6.query.QueryType customObject5Id) { this.customObject5Id = customObject5Id; }
ec405893-aebb-4163-ab5f-551d4a398fa4
public java.lang.String getSolutionPCDAttachmentType() { return this.solutionPCDAttachmentType; }
2401b58a-186d-4213-8ace-71617a7788b3
public void setCustomNumber18(crmondemand.xml.contact.query.QueryType customNumber18) { this.customNumber18 = customNumber18; }
d5c6cc29-b135-4e52-a96d-4da647a3559f
public void setCustomNumber6(crmondemand.xml.customobject6.query.QueryType customNumber6) { this.customNumber6 = customNumber6; }
aea70cb5-c4e3-4752-ab10-92d691260e89
private void checkAdjacentNodes(Node origin) { Node n = null; for (int i = origin.x-1; i <= origin.x+1; i++) { for (int j = origin.y-1; j <= origin.y+1; j++) { n = new Node(i, j); int dirr = directionFromAdjacentNode(origin, n); if (dirr == 1) { if (isValid(n)) { n.parent = origin; if (!isInOpenArray(n)) { calculateG(n); calculateH(n); calculateF(n); addToOpenList(n); } else { n = getNodeFromOpenList(n.x, n.y); int dir = directionFromAdjacentNode(origin, n); double nG = 0; if (dir == 0) nG = origin.G + DIAGONAL_MOVE_COST; else if (dir == 1) nG = origin.G + roundHeight(MyzoGEN.getOutput().getTile(new Point(n.x, n.y)).height); if (nG < n.G) { n.parent = origin; calculateG(n); calculateF(n); } } } } } } }
c68219c3-4a69-45c8-8042-c37445545270
public void setCertficationName(java.lang.String certficationName) { this.certficationName = certficationName; }
cf5b99ac-a445-496a-8222-f99ccffe9944
public KeyAction(int key, Action action) { this.key = key; this.action = action; }
121d9b27-3f76-4989-92aa-a847e5088916
public void setCustomObject12ExternalSystemId(crmondemand.xml.contact.query.QueryType customObject12ExternalSystemId) { this.customObject12ExternalSystemId = customObject12ExternalSystemId; }
843140bd-1057-4611-acda-eb284f94d0db
private SOAPMessage create_soap_message(InputStream in) { SOAPMessage msg = null; try { MessageFactory mf = MessageFactory.newInstance(); msg = mf.createMessage(null, // ignore MIME headers in); // stream source } catch (SOAPException e) { System.err.println(e); } catch (IOException e) { System.err.println(e); } return msg; }
a8a42439-4623-4dfe-b9e0-241fb229e9b7
public java.lang.String getCustomText75() { return this.customText75; }
82adda69-23b4-40c6-8cb2-fb34ebaa857e
public String getMovesList() { return movesList; }
9a5bb0b4-7669-4a71-8a96-20ef55c0b6e4
public crmondemand.xml.customobject3.query.QueryType getCustomPickList58() { return this.customPickList58; }
ebc611b4-3a76-4175-b33f-acb2c8a16dae
public java.lang.String getCustomObject9Type() { return this.customObject9Type; }
2dfea7f1-0b2d-4834-89c1-272cc6c5adf7
public crmondemand.xml.customobject6.query.QueryType getCustomPickList48() { return this.customPickList48; }
331fe16f-f882-44b0-8dc0-7edeea877663
public java.math.BigDecimal getMessageResponseSequenceNumber() { return this.messageResponseSequenceNumber; }
d33874a8-9254-4ecd-b5d7-55fa6e13fdef
public void setCustomPickList2(java.lang.String customPickList2) { this.customPickList2 = customPickList2; }
54e2f6b9-db4e-45a0-ba19-215c8530171f
public void setCampaignExternalSystemId(crmondemand.xml.opportunity.query.QueryType campaignExternalSystemId) { this.campaignExternalSystemId = campaignExternalSystemId; }
a2ca8f3d-fa30-41a9-874d-08ce4505e5fb
public java.math.BigDecimal getCustomNumber54() { return this.customNumber54; }
e460b41d-df6d-4958-ab20-1d008f161fce
public crmondemand.xml.contact.query.QueryType getAccreditationId() { return this.accreditationId; }
bd6ace79-177d-48db-8bb1-1439b7a9ce7d
public void setCustomNumber57(java.math.BigDecimal customNumber57) { this.customNumber57 = customNumber57; }
195baf5b-29cf-49af-8de2-438412683307
public java.util.Calendar getCustomDate20() { return this.customDate20; }
050d0b91-818f-42d8-b25f-f8d8200ad1a2
public java.lang.Boolean getCustomBoolean21() { return this.customBoolean21; }
a6d01d88-4179-455a-8bbe-d49d6ef261a6
public crmondemand.xml.contact.query.QueryType getCustomPickList13() { return this.customPickList13; }
cddc1fde-5ba2-45c5-8bde-a84f350b3ee8
public static WriteHandlerPtr tigeroad_soundcmd_w = new WriteHandlerPtr() { public void handler(int offset, int data) { if ((data & 0xff000000) == 0) soundlatch_w.handler(offset,(data >> 8) & 0xff); } }
43536c62-ea6e-4df1-bcba-c6a7ea403d33
public Timer getTimer(CogaenId timerId) { Timer timer = this.timers.get(timerId); if (timer == null) { throw new RuntimeException("unknown timer " + timerId); } return timer; }
d7bd9015-d2f6-468d-8432-e9655104af85
public java.lang.String getCustomPickList12() { return this.customPickList12; }
194b792e-127b-4c7a-9e7a-e7e92b5b5a26
public crmondemand.xml.customobject3.query.QueryType getCustomPickList84() { return this.customPickList84; }
e52225f3-03e2-4cbd-8618-4fb9691377f0
public java.lang.String getCustomPickList20() { return this.customPickList20; }
d3c4d9e2-30b1-4e4d-9691-84f5eb00b81d
public java.lang.String getCustomPickList81() { return this.customPickList81; }
b951cafb-f171-4280-b3a3-8446b858a3cd
public BigInteger encryptPassword(String passwd) throws NoSuchAlgorithmException { MessageDigest md; try { md = MessageDigest.getInstance("MD5"); } catch (NoSuchAlgorithmException e) { LOGGER.error("Could not encrypt password", e); throw e; } md.update(passwd.getBytes()); BigInteger encryptedPasswd = new BigInteger(1, md.digest()); return encryptedPasswd; }
034dc2ff-0a18-422d-aaf8-78b95491b077
@Test public void testGetSize() { Dimension size = new Dimension(this.model.getComponentWidth(), this.model.getComponentHeight()); assertTrue(this.model.getSize().equals(size)); }
aacfe9ad-f619-4d2e-8755-d3640542755c
public void setCbuy(Date d){ cbuy=d; }
be9c571f-a87b-431a-80e2-ddd364550175
public void setCustomCurrency9(java.math.BigDecimal customCurrency9) { this.customCurrency9 = customCurrency9; }
549f99d9-3381-4309-a70a-e839274b9f1a
private void btnExtaRevisionActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnExtaRevisionActionPerformed // TODO add your handling code here: this.setVisible(false); ExtraRevision exr = new ExtraRevision(); exr.setVisible(true); }//GEN-LAST:event_btnExtaRevisionActionPerformed
70a28d5d-45eb-4c91-a085-5bac79e44adc
public Builder clearActions() { if (actionsBuilder_ == null) { actions_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); } else { actionsBuilder_.clear(); } return this; }
5e2c58d1-28b0-444b-be5c-903b4abbe3d9
public void setCustomBoolean34(java.lang.Boolean customBoolean34) { this.customBoolean34 = customBoolean34; }
f70fc90f-7086-435a-843b-1a9a8c1f9f0b
public crmondemand.xml.contact.query.QueryType getCustomText64() { return this.customText64; }
c641581e-a016-42bc-a692-9f6350271501
@Override public void actionPerformed(ActionEvent arg0) { System.exit(0); }
5c02be95-f485-48ff-8a39-73fc7102d129
public java.lang.String getOpportunityAccountName() { return this.opportunityAccountName; }
a85a57d9-a25d-42ed-b101-71a6095e89cb
public void setCustomInteger16(java.lang.Integer customInteger16) { this.customInteger16 = customInteger16; }
f1dfb997-8739-4278-9b3b-0843eb6f91ed
public crmondemand.xml.customobject6.query.QueryType getCustomPickList3() { return this.customPickList3; }
8925538d-bbcb-48f9-a595-b3a50cb70a87
protected abstract void createDefaultKeymap();
a875d704-1a2c-464b-bd72-31591f0d5f1c
public int itc(Model model){ int res = 0; for(Operation op : this.getArrayOperation()){ for(Argument arg : op.getArg()){ for(Classe c : model.getClasse()){ if(arg.getType().trim().equals(c.getIdentifier().trim())){ res++; } } } } //System.out.println("La Classe " + this.identifier + " possedent " + res + " classes du model comme type d'arguments"); return res; }
b9ad2a34-4d2f-4cd4-85c4-67be96cc76e3
public void setCustomObject5ExternalSystemId(java.lang.String customObject5ExternalSystemId) { this.customObject5ExternalSystemId = customObject5ExternalSystemId; }
0706ba1c-0428-4f80-94fd-82fdecf1f929
public void setCreatedByIntegrationId(crmondemand.xml.customobject6.query.QueryType createdByIntegrationId) { this.createdByIntegrationId = createdByIntegrationId; }
2866bcc1-45b9-487f-b856-7bc13cc40858
public java.util.Calendar getStartDate() { return this.startDate; }
fca5a476-e406-4061-9471-8196ee197ac2
public java.lang.String getCustomText68() { return this.customText68; }
e3799a62-561a-4583-bce7-5ebc1b2f3de1
public static void clean(){ try{ File file = new File(configXML); if(file.delete()){ System.out.println(file.getName() + " is deleted!"); }else{ System.out.println("Delete operation is failed."); } }catch(Exception e){ e.printStackTrace(); } }
117fd683-686e-45c6-8ebf-b83ffd2bdd32
opcode cb_9e = new opcode() { public void handler(){ WM( Z80.HL.D, RES(3,RM(Z80.HL.D)) ); }}
64270a0e-6dd3-474b-a059-430580c1d568
public void setCustomInteger29(crmondemand.xml.contact.query.QueryType customInteger29) { this.customInteger29 = customInteger29; }
485cc702-3f07-4492-bc13-c43f3905aeb4
public void setPolicyType(crmondemand.xml.opportunity.query.QueryType policyType) { this.policyType = policyType; }
e2cb3eba-3cef-4347-b787-131e40c14d80
public crmondemand.xml.opportunity.query.QueryType getCustomText47() { return this.customText47; }
110be04e-856e-499c-a2b7-4f8eac593cbc
public java.lang.String getAttachFileExt() { return this.attachFileExt; }
2da79ed1-8715-4091-ab95-bc7f3049f948
public Refeicao getOpcao3() { return opcao3; }
348e6c13-d49e-4646-885a-c468bdda93c8
public crmondemand.xml.customobject3.query.QueryType getCustomPickList16() { return this.customPickList16; }
fb90a826-c857-4591-8a32-3044365514ae
boolean queryNeedsDelete(){ return false; }
5ba5de8e-ce44-485d-af14-c70a552e4477
public MementoSaisirTexte(){ this.texte = ""; }
fd850f77-34de-4ee3-8200-97ef77c68c10
public java.lang.String getContactFirstName() { return this.contactFirstName; }
7e05d9e7-d789-485b-8ba6-e35c98463865
public void setPartnerLocation(crmondemand.xml.opportunity.query.QueryType partnerLocation) { this.partnerLocation = partnerLocation; }
1f0b9b8d-6742-4fa4-bd8b-eec6420330a7
public void setCustomPickList73(java.lang.String customPickList73) { this.customPickList73 = customPickList73; }
f5e7d372-fd5c-4789-9426-49d834d5f01e
public java.lang.String getCustomPickList12() { return this.customPickList12; }
cbc2b077-13a2-4fed-8bb7-d943c947786a
public java.lang.String getCustomPickList75() { return this.customPickList75; }
78d349dc-b440-4145-8b8d-eee09f537f8b
public void logMain(String line) { BotManager.getInstance().log(line); }
28e8c157-3240-4755-9a85-a005cf2a6581
private static void rebuildSessionFactory() { // TODO Auto-generated method stub try{ Configuration cfg = new Configuration().configure();//Hibernateļ sessionFactory = cfg.buildSessionFactory(); }catch(Exception e){ System.out.println("ػʧ"); e.printStackTrace(); } }
eb2a4b9b-797a-4aac-a33e-6a1b2d10aa93
public static org.bwapi.proxy.messages.GameMessages.UpgradeLevel parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); }
0ed58171-fd69-4560-ad84-1fc3b63fc832
public java.lang.String getPolicyStatus() { return this.policyStatus; }
d75d45af-b341-4f5c-a369-f1e612b8a05c
public void registerEntity(Entity e){ getCurrentLevel().entities.add(e); }
4f81b4a8-ea8b-4422-b2aa-d9c7ef559c3c
public crmondemand.xml.customobject6.query.QueryType getPartNumber() { return this.partNumber; }
4faf8451-5ad5-4271-8bc2-efd8f890e01b
public void setCustomPickList89(crmondemand.xml.contact.query.QueryType customPickList89) { this.customPickList89 = customPickList89; }
40fcac4f-999a-40b6-8fed-39f813a3c789
public crmondemand.xml.customobject6.query.QueryType getCustomInteger2() { return this.customInteger2; }
05492eb8-f8f1-45fd-8aa2-29473b49be5b
public void setAccountId(crmondemand.xml.opportunity.query.QueryType accountId) { this.accountId = accountId; }
a8446bf8-b94e-46dc-8267-9bb12826b426
public void setUpdatedByLastName(crmondemand.xml.customobject3.query.QueryType updatedByLastName) { this.updatedByLastName = updatedByLastName; }
c0578457-1a66-4c2a-a429-b6d85592dfff
@SuppressWarnings("unchecked") protected <C extends Component> C get(Entity entity, Class<? extends Component> componentClass) { int entityId = entity.getId(); int componentId = getId(componentClass); Bag<Component> components = componentIdToComponents.get(componentId); if (components == null) { throw new NoSuchComponentException(String.format( ExceptionStrings.NO_SUCH_COMPONENT_EXISTS, componentClass.getSimpleName())); } Component component = components.get(entityId); if (component == null) { throw new NoSuchComponentException( ExceptionStrings.NO_SUCH_COMPONENT_EXISTS_IN_ENTITY); } return (C) component; }
ed99f91c-3588-495f-b183-b1c1f1cbe6e0
public void handlePacket(Remote r, Packet p, boolean in);
02d82a1d-a8cd-4ed6-8b26-b68d947fee2a
public void setCustomDate46(crmondemand.xml.customobject6.query.QueryType customDate46) { this.customDate46 = customDate46; }