id
stringlengths
36
36
text
stringlengths
1
1.25M
325e60a4-36b4-434d-baa4-acd81b690b68
public void setAccountType(crmondemand.xml.customobject3.query.QueryType accountType) { this.accountType = accountType; }
42599288-eaa4-47a4-86dd-b477900f5a30
public void setOwnerExternalSystemId(crmondemand.xml.customobject3.query.QueryType ownerExternalSystemId) { this.ownerExternalSystemId = ownerExternalSystemId; }
0307deda-0ff9-40ba-8d45-e31c05b01166
public java.math.BigDecimal getCustomNumber29() { return this.customNumber29; }
631188e6-1a62-487b-ac7f-bb0f02bc1ae1
public void setCustomText3(crmondemand.xml.opportunity.query.QueryType customText3) { this.customText3 = customText3; }
f7a7d9ab-bd21-4ef3-a997-fd810f163638
public crmondemand.xml.opportunity.query.QueryType getCustomBoolean18() { return this.customBoolean18; }
8f0853e3-8ffe-4128-af43-9df9344204d0
public java.math.BigDecimal getCustomNumber48() { return this.customNumber48; }
050544c2-be13-43f5-bf28-a117b28ad73b
public void setCustomText46(java.lang.String customText46) { this.customText46 = customText46; }
38544d58-5919-4157-8942-cc13285fd608
public static Controller getNetworkController(UserInterface ui) { return new NetworkController(ui); }
d1f19440-d76f-424c-88b1-cfa2e8eca21f
public java.util.Calendar getSolutionReleaseDate() { return this.solutionReleaseDate; }
ae54b709-df43-4417-a9a3-8f1ad25b7fd8
public crmondemand.xml.opportunity.query.QueryType getCustomText17() { return this.customText17; }
b31d249f-4dde-4961-9d69-3d3d32f80a10
public void setCustomPickList8(crmondemand.xml.customobject3.query.QueryType customPickList8) { this.customPickList8 = customPickList8; }
30426de3-6528-4a27-951f-ee527490c67c
public void setBookName(java.lang.String bookName) { this.bookName = bookName; }
412b28d7-76f9-44a4-a44f-5002b2dbd81b
public void setCustomText17(crmondemand.xml.contact.query.QueryType customText17) { this.customText17 = customText17; }
8eee22d1-b433-44be-8e4e-a9b13814f60e
public void setCustomPickList96(java.lang.String customPickList96) { this.customPickList96 = customPickList96; }
15f14160-a6b8-4cbb-b252-ab062f3bf45a
public void setCustomText89(java.lang.String customText89) { this.customText89 = customText89; }
0d6501d0-a1f7-466d-9239-d70647f22c54
public void setCustomNumber35(java.math.BigDecimal customNumber35) { this.customNumber35 = customNumber35; }
f0e2d0c4-80e0-4444-8e59-a5046f678813
public crmondemand.xml.contact.query.QueryType getCustomPhone10() { return this.customPhone10; }
88b1ddf2-7c01-4c84-8a89-b001faff522f
public java.lang.String getCustomText82() { return this.customText82; }
669944c0-d279-4951-a9d8-370c78db4449
public java.math.BigDecimal getZCustomCurrency16() { return this.zCustomCurrency16; }
81cbd81c-a4e6-4de4-9889-08ae131a7137
public void setCustomText45(java.lang.String customText45) { this.customText45 = customText45; }
b9e40062-b5e8-49c0-8549-6d006ea4ab9c
public void setCustomPickList45(crmondemand.xml.contact.query.QueryType customPickList45) { this.customPickList45 = customPickList45; }
f5d23ef8-98ae-4279-9ba6-80f6f42d9a8b
public void test_equals_false_minute_differs(int y, int m, int d, int h, int mi, int s, int n) { LocalDateTime a = LocalDateTime.of(y, m, d, h, mi, s, n); LocalDateTime b = LocalDateTime.of(y, m, d, h, mi + 1, s, n); assertFalse(a.equals(b)); } @Test(dataProvider = "sampleDateTimes", groups = { "tck" }
e0305569-a386-4a37-86eb-a1a47ff0ee1e
public void setCustomText10(crmondemand.xml.contact.query.QueryType customText10) { this.customText10 = customText10; }
fa964ad6-d539-4afa-9f14-f9461053d2b5
public void setCustomText6(crmondemand.xml.customobject3.query.QueryType customText6) { this.customText6 = customText6; }
65bc162c-a532-4194-8c56-e5ef456cb7bd
public java.math.BigDecimal getCustomNumber58() { return this.customNumber58; }
d21ee447-0ac7-491f-ae83-79f84b69a1f5
public crmondemand.xml.contact.query.QueryType getCustomPickList26() { return this.customPickList26; }
86cbc44c-6dc0-4e22-bbf1-14a45ebd317e
public java.lang.Integer getCustomInteger13() { return this.customInteger13; }
7d6fde1b-6eab-4739-aad5-0edacd8d018c
public java.lang.String getCustomText26() { return this.customText26; }
5fb4bf20-79f6-49ef-b8b5-351e4d405ca5
public void setCustomObject10Type(java.lang.String customObject10Type) { this.customObject10Type = customObject10Type; }
9f6d81b4-c250-470f-8fb7-e194ba7b4a9c
public void unDo(Graphics2D g2){ // Loop through the list of shapes and draw them on the screen for (int i = 0; i <draw_index-1 ; i++) { ShapeObject temp=objects.get(i); if(temp instanceof Line){ current_start=temp.starting_point; current_end=temp.ending_point; c=temp.c; shape_type="Line"; } else if(temp instanceof Square){ current_start=temp.starting_point; current_end=temp.ending_point; c=temp.c; Square t=(Square)temp; fill=t.fill; shape_type="Square"; } else if(temp instanceof Circle){ current_start=temp.starting_point; current_end=temp.ending_point; c=temp.c; Circle t=(Circle)temp; fill=t.fill; shape_type="Circle"; } draw(g2); } // this is for refresing purposes if(draw_index==1){ current_start=new Point(0,0); current_end=new Point(0,0); draw(g2); } draw_index--; update(); }
9c0fc114-90c7-48d9-939d-a7dd42b49e7c
public java.lang.String getCustomText10() { return this.customText10; }
a8ad451e-41d6-4755-9c6a-83b84fbc575a
public void setCustomDate8(crmondemand.xml.customobject3.query.QueryType customDate8) { this.customDate8 = customDate8; }
f3e09059-99fe-44b7-bc17-4d0f932dbf26
public void setCustomPickList69(crmondemand.xml.customobject6.query.QueryType customPickList69) { this.customPickList69 = customPickList69; }
825ffdf3-617f-42ef-88de-c11c0c140d86
public void setAddress(String address) { this.address = address; }
88cfb6c2-abf6-4f2f-bc11-2b2755a5489b
public void setIndexedPick2(crmondemand.xml.contact.query.QueryType indexedPick2) { this.indexedPick2 = indexedPick2; }
3e806e38-119d-4a9b-ac54-0504e0e1ecb8
public java.math.BigDecimal getCustomNumber46() { return this.customNumber46; }
c9ed01da-97cf-4610-a7b5-80c8d46fa5b4
public void setCustomPickList0(java.lang.String customPickList0) { this.customPickList0 = customPickList0; }
704febd7-4ecb-4b66-aa18-391f1b60bc33
public java.lang.Boolean getCustomBoolean12() { return this.customBoolean12; }
972a0a11-f9be-4bcb-a749-eecbf9d63ff6
public crmondemand.xml.customobject6.query.QueryType getCustomInteger7() { return this.customInteger7; }
2c7e9660-e639-4901-8f9c-d75233e44b9c
public void setUpdatedByLastName(crmondemand.xml.contact.query.QueryType updatedByLastName) { this.updatedByLastName = updatedByLastName; }
62af4228-61e0-4ac6-9320-d47c830178ea
public java.lang.Integer getCustomInteger21() { return this.customInteger21; }
5dff6dcd-1a24-4362-b75b-79ebc07a9616
public java.lang.String getCustomPickList30() { return this.customPickList30; }
589336d9-ca9f-4906-95fa-9d5df5253ec7
public java.lang.Integer getCustomInteger26() { return this.customInteger26; }
b9165e3d-9ffa-439f-b596-4157b6b6c6d0
public void setCustomText40(crmondemand.xml.contact.query.QueryType customText40) { this.customText40 = customText40; }
746a41c7-badc-4118-a22b-b890fd799969
public void setCustomPickList18(java.lang.String customPickList18) { this.customPickList18 = customPickList18; }
200ae62a-b78c-464d-a849-191021fd2dd2
public static void main(String[] args) { Parser parser = new Parser("src/output.json"); parser.process(); parser.toJson("src/parse_tree.json"); }
5d7acacc-e866-4811-ad2c-a0f5fdf01713
public void setCustomPickList15(crmondemand.xml.customobject6.query.QueryType customPickList15) { this.customPickList15 = customPickList15; }
acb2c411-f40e-47e4-a752-e2608aae55b1
public void setCustomPickList10(java.lang.String customPickList10) { this.customPickList10 = customPickList10; }
f0d892f2-2ee8-4652-bcb8-e6c93ad013c0
public void setExamName(crmondemand.xml.customobject6.query.QueryType examName) { this.examName = examName; }
3131558f-78d5-443c-8464-74a2f5d597bb
public crmondemand.xml.customobject6.query.QueryType getCustomNumber44() { return this.customNumber44; }
2beacb56-ed3f-4ce0-bd22-b3c18861970e
private void refresh() { jp1.updateDate(); jp3.updateDate(); SwingUtilities.updateComponentTreeUI(this); }
7e4e41dd-fbfa-478b-9612-d8ebe0e58c3a
public java.lang.Boolean getCustomBoolean10() { return this.customBoolean10; }
f3e5a961-5f9a-402f-be64-6cdaa30577e0
public TextUI() { this.scanner = new Scanner(System.in); deadCards = new HashSet<Card>(); }
ae2fc7c1-ac8b-4d50-a4f6-fc08162b54c3
public java.util.Calendar getCustomDate44() { return this.customDate44; }
df6920ab-729b-4eb1-b0c8-4cdc0728d2fc
public java.math.BigDecimal getCustomNumber39() { return this.customNumber39; }
4b9b74a2-d50b-4237-a9e5-72810bd191cb
public void setCustomPickList75(crmondemand.xml.customobject3.query.QueryType customPickList75) { this.customPickList75 = customPickList75; }
f6906ced-c52c-4f52-8232-546ab8231493
public void setCustomBoolean14(crmondemand.xml.contact.query.QueryType customBoolean14) { this.customBoolean14 = customBoolean14; }
3f1dd350-f0bf-4d4f-b024-fdcaed9eed76
public crmondemand.xml.customobject6.query.QueryType getCustomPickList120() { return this.customPickList120; }
5bc06e07-7f9c-4ebc-bb99-9e231340f3ae
public java.lang.String getCustomPickList81() { return this.customPickList81; }
ae5665e1-9e7e-4009-88a6-d8cdb1b07014
public java.lang.String getSPRequestExternalSystemId() { return this.sPRequestExternalSystemId; }
1007c36f-88ca-4322-af3e-fef9520d8ade
public crmondemand.xml.customobject6.query.QueryType getCustomObject2Name() { return this.customObject2Name; }
f263df7b-fefe-44c1-b349-396d126a6209
public java.math.BigDecimal getCustomNumber61() { return this.customNumber61; }
f8dbcdb2-d65b-4cba-8ce2-0014875bbbd5
public void setFinancialAccountFinancialAccount(crmondemand.xml.opportunity.query.QueryType financialAccountFinancialAccount) { this.financialAccountFinancialAccount = financialAccountFinancialAccount; }
d00c5809-475c-4291-a6e1-2aa090675328
public Builder clearNumber() { bitField0_ = (bitField0_ & ~0x00000002); number_ = 0; onChanged(); return this; }
0b5b904b-b204-41ac-86b0-38fac5eb983f
public crmondemand.xml.contact.query.QueryType getServiceRequestIntegrationId() { return this.serviceRequestIntegrationId; }
7ce32a42-ef91-463f-b5c3-70d272b7b7d7
public int size () { return (int)_size.get(); }
6081e5c7-2d8b-474d-a6ab-92b693b7aaa1
public java.lang.String getCustomPickList41() { return this.customPickList41; }
bfcf2a92-9e82-438c-9d4e-1b7325ace455
public RecipeCommand(Skeptermod skeptermod) { }
6db851b7-fec7-480b-9436-c781f6455650
public void setActivityType(java.lang.String activityType) { this.activityType = activityType; }
e94b809c-1f3c-4005-9bed-8875db678576
public void setContactLastName(crmondemand.xml.contact.query.QueryType contactLastName) { this.contactLastName = contactLastName; }
04dc16d9-bee2-4bac-9585-79456120a8cd
public java.lang.String getAccountLocation() { return this.accountLocation; }
88338cae-b3d9-4218-a5b4-749873e8ef4e
public Main(int width, int height) { this(width, height, 60); }
deb33559-08ef-488a-b5b7-ecd65107c2c4
public void setCustomPickList14(java.lang.String customPickList14) { this.customPickList14 = customPickList14; }
e2159fa1-3ff0-4bea-a1c8-d251e420b117
public crmondemand.xml.contact.query.QueryType getCustomCurrency16() { return this.customCurrency16; }
220c9785-2d88-44e9-aa5e-1a95f4a101e7
public void setCustomText59(java.lang.String customText59) { this.customText59 = customText59; }
4fce8ddb-ce6b-45f3-aba3-424b2f177e90
@Test public void testAddMassesOnMassesArray() { Mass[] masses = new Mass[]{mass1, mass2, mass3}; assertEquals(0, graph.masses.size()); graph.addMasses(masses); assertEquals(3, graph.masses.size()); assertSame(mass1, graph.masses.get(0)); assertSame(mass2, graph.masses.get(1)); assertSame(mass3, graph.masses.get(2)); }
0379ad63-f817-44ff-815e-ab4630939db6
@Override public void actionPerformed(ActionEvent e) { if (e.getSource() == btnSearch) { if(txtSearch.getText() == null || txtSearch.getText().equals("")){ JOptionPane.showMessageDialog(null, "Search blank is empty.","Warning",JOptionPane.ERROR_MESSAGE); return; } searchDate(); } }
51694065-d33d-4b4f-bd6d-a080d7132364
public void ora_ex() { int t=EXTBYTE(); m6809.a |= t; CLR_NZV(); SET_NZ8(m6809.a); if(m6809log!=null) fprintf(m6809log,"M6809#%d ora_ex :PC:%d,PPC:%d,A:%d,B:%d,D:%d,DP:%d,U:%d,S:%d,X:%d,Y:%d,CC:%d,EA:%d\n", cpu_getactivecpu(),m6809.pc,m6809.ppc,m6809.a,m6809.b,getDreg(),m6809.dp,m6809.u,m6809.s,m6809.x,m6809.y,m6809.cc,ea); }
839e71c4-ab61-4b21-8f47-c65ac6dee363
public crmondemand.xml.contact.query.QueryType getCustomNumber19() { return this.customNumber19; }
243c2359-e8f4-4cc9-b8fa-fec2e0dff3a7
public java.lang.String getPortfolioAccountNumber() { return this.portfolioAccountNumber; }
30d0348a-0e1a-4827-92b7-536fccbe041b
public void pointerPressed(int i, int i1) { }
e2b2b18d-00e8-4d76-a6e6-46505f696a0f
public java.math.BigDecimal getIndexedNumber0() { return this.indexedNumber0; }
5eda3a0d-1edf-4165-89d3-70acdcc5ca48
public java.util.Calendar getCustomDate54() { return this.customDate54; }
95daf52e-632a-43de-a331-7f896cae5a76
public void setCustomPickList49(crmondemand.xml.customobject6.query.QueryType customPickList49) { this.customPickList49 = customPickList49; }
064d5282-d57a-4e1c-b3d8-cdbd61bf552a
public void setCustomInteger15(crmondemand.xml.customobject6.query.QueryType customInteger15) { this.customInteger15 = customInteger15; }
d58dca26-ff1e-4970-a53b-72d874638f4d
public void setCustomText0(crmondemand.xml.customobject3.query.QueryType customText0) { this.customText0 = customText0; }
6b205ac5-0156-4c3e-868a-5d8b48bf067e
public void setCustomPickList24(crmondemand.xml.opportunity.query.QueryType customPickList24) { this.customPickList24 = customPickList24; }
1061413e-1fe4-4b81-b8df-67093af75d81
public java.lang.String getCustomPickList15() { return this.customPickList15; }
4ee70ddc-14e6-46d9-8bda-417baef7369f
public java.lang.String getCustomText42() { return this.customText42; }
9e5095da-aa9c-4374-b384-4aed29057053
public void setCustomObject10Type(crmondemand.xml.contact.query.QueryType customObject10Type) { this.customObject10Type = customObject10Type; }
59399bf6-9fbd-48a7-b1c8-55c64e63e8ac
public void setSolutionStatus(java.lang.String solutionStatus) { this.solutionStatus = solutionStatus; }
66da4a82-e2ac-416f-870d-097f5ffcce72
public crmondemand.xml.customobject3.query.QueryType getCustomPickList60() { return this.customPickList60; }
ff0e3ae7-4eb6-4b3c-9612-895b81b6c7c1
public java.math.BigDecimal getCustomCurrency11() { return this.customCurrency11; }
adf29eb3-d6f2-4ce9-a478-2e73354225d6
public void setCustomDate27(java.util.Calendar customDate27) { this.customDate27 = customDate27; }
43c73f67-a039-47b0-84b7-ccbe71e38418
public java.lang.String getCustomPickList95() { return this.customPickList95; }
74e2ae33-e016-49b2-9721-3c30bf347cbb
public void addDays(){ this.removeAll(); this.panel.removeAll(); for(int i = 1; i <= this.model.getMaxDays(); i++){ Button button = new Button(i + ""); button.setEnabled(false); boolean isBlack = false; for(Integer integer : this.model.getList()){ if(integer.equals(i)){ isBlack = true; button.setBackground(Color.BLACK); button.addActionListener(new DayController(this.db, this.model.getPictures(i), this.files)); button.setActionCommand("Day"); this.revalidate(); }else{ } } button.setVisible(true); if(isBlack) { button.setEnabled(true); } this.panel.add(button); this.add(this.panel, BorderLayout.CENTER); revalidate(); } revalidate(); }
76705e30-b7c3-4971-9d99-3388c8e62866
private void saveAs() { String filename = saveAsHelper("png"); if (filename != null) { try { save(filename); // save the file } catch (IOException ex) { JOptionPane.showMessageDialog(frame, "Unable to save image:\n" + ex); } } }
fe5b97a9-4574-41a2-95cf-cc9db59f86c8
public void setOwnerFullName(crmondemand.xml.customobject3.query.QueryType ownerFullName) { this.ownerFullName = ownerFullName; }
33dc245a-ea25-49c0-a443-32709863fdaa
public crmondemand.xml.customobject6.query.QueryType getCustomText37() { return this.customText37; }
dec84ec2-901f-40c4-a442-98f09925c6bf
public java.lang.String getCreatedBy() { return this.createdBy; }