id
stringlengths 36
36
| text
stringlengths 1
1.25M
|
---|---|
11585711-2e2b-4242-a05a-e8fde41bfd87 | private void terminate()
{
WindowEvent wev = new WindowEvent(this, WindowEvent.WINDOW_CLOSING);
Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(wev);
setVisible(false);
dispose();
} |
d5d0cc96-bae6-43f3-84c6-e80806d79b16 | public void setCustomBoolean5(java.lang.Boolean customBoolean5)
{
this.customBoolean5 = customBoolean5;
} |
5660cdef-671c-4f48-b1a6-2cc1c142bd39 | public crmondemand.xml.opportunity.query.QueryType getCustomPickList53() {
return this.customPickList53;
} |
3f75e76b-fef5-4f06-9b42-50fdcae111bc | public void setCustomPickList26(java.lang.String customPickList26) {
this.customPickList26 = customPickList26;
} |
7ead535e-81cd-4742-aa6c-af97b61bb3d2 | public java.math.BigDecimal getCustomCurrency18() {
return this.customCurrency18;
} |
ed0675c5-0846-4cb5-84eb-0e44ab83b95f | public java.lang.String getOwnerLastName() {
return this.ownerLastName;
} |
60e8360d-649e-45a4-981d-d039b0000294 | public void setCustomPickList45(java.lang.String customPickList45) {
this.customPickList45 = customPickList45;
} |
21dbe40f-18e9-46d5-b169-d7d294a1c2f8 | public crmondemand.xml.opportunity.query.QueryType getCustomText27() {
return this.customText27;
} |
48c67069-4ccb-47d2-a10e-45674d721182 | public void setProductIntegrationId(crmondemand.xml.customobject3.query.QueryType productIntegrationId) {
this.productIntegrationId = productIntegrationId;
} |
b4973e90-3885-475b-a473-3c30b394298f | public void setCustomDate51(java.util.Calendar customDate51) {
this.customDate51 = customDate51;
} |
11739c15-e4ab-4996-a2b8-62d7756acc78 | public crmondemand.xml.customobject6.query.QueryType getCustomObject9Id() {
return this.customObject9Id;
} |
fefd32c8-5823-424a-8712-e4a5178f34cd | @Override public CssMetaData getCssMetaData() { return StyleableProperties.SECTION_FILL_8; } |
6f87096c-5bc0-4442-aa23-38d538dd91aa | public void setCustomObject5Id(java.lang.String customObject5Id) {
this.customObject5Id = customObject5Id;
} |
3cb9d2d2-f6fb-4691-8871-5adc70130564 | public java.lang.String getCustomText48() {
return this.customText48;
} |
ad7bc86b-2cb7-4e77-9cc1-f1fbf3e90a26 | public crmondemand.xml.customobject6.query.QueryType getCustomObject1IntegrationId() {
return this.customObject1IntegrationId;
} |
f54296db-a3ae-4d8c-bd15-c7e786762326 | public void setCustomInteger18(crmondemand.xml.contact.query.QueryType customInteger18) {
this.customInteger18 = customInteger18;
} |
5dd4e2f9-733b-42d0-83c7-e19100402e21 | public crmondemand.xml.opportunity.query.QueryType getCustomBoolean8() {
return this.customBoolean8;
} |
c29c79e3-7124-4d08-8fec-1d5a4e26f032 | public java.math.BigDecimal getCustomNumber52() {
return this.customNumber52;
} |
9ef4dbcc-f0e5-4321-8c1b-c07af62bb639 | public crmondemand.xml.customobject3.query.QueryType getCustomObject11IntegrationId() {
return this.customObject11IntegrationId;
} |
9097f897-7d1d-47a8-b1e7-dbe20823263a | public void actionPerformed(ActionEvent e) {
System.out.println("Flag Action Press - Flight");
Globals.ListTypeControl = 1; // is FLIGHT
Globals.listobjects = TravelGUI.ATAControl.RefreshList(Globals.listobjects);
//CreateBt.setName("Create Flight");
CreateBt.setEnabled(true);
} |
0ae6c5cd-ed38-4bbe-b8b2-23307aac9890 | public crmondemand.xml.opportunity.query.QueryType getCustomObject2Id() {
return this.customObject2Id;
} |
b22ad2c0-3a83-473b-88ed-bdfd2d51fbd7 | public static void main(String[] args) {
int[] a = {1, 2, 3, -6, 0};
System.out.println(positiveSum(a));
} |
e215267f-f791-4c0c-8f5b-cb79ead4b755 | public java.lang.String getCustomObject3Name() {
return this.customObject3Name;
} |
847f1453-526b-4e77-becb-bb267ebe19ea | public Type type() {
return Type.values()[this.type];
} |
8f0c26b5-ea3e-4f6b-b6b8-b8f19bbae4fb | @Override
public void windowDeiconified(WindowEvent arg0) {} |
3b11af9c-122a-4cbb-a74d-c5998bf94474 | public void setCustomBoolean17(crmondemand.xml.contact.query.QueryType customBoolean17) {
this.customBoolean17 = customBoolean17;
} |
d74f3d67-d02b-442d-9187-b17069456625 | public void setTransactionId(crmondemand.xml.opportunity.query.QueryType transactionId) {
this.transactionId = transactionId;
} |
a0a83894-f9e5-4cb5-a37a-46e3a7975437 | public void setSolutionExternalSystemId(java.lang.String solutionExternalSystemId) {
this.solutionExternalSystemId = solutionExternalSystemId;
} |
a6398f26-defd-4c43-b37e-bfdd5d9f767c | protected void generateTemplateParameters(Template t, ClassFile classFile) {
// Build the static getTemplateParameterNames method.
Variable[] params = t.getParams();
int paramCount = params.length;
Modifiers pubstat = new Modifiers();
pubstat.setPublic(true);
pubstat.setStatic(true);
TypeDesc stringArrayDesc = TypeDesc.STRING.toArrayType();
MethodInfo mi = classFile.addMethod
(pubstat, PARAMETER_METHOD_NAME, stringArrayDesc);
CodeBuilder builder = new CodeBuilder(mi);
builder.loadConstant(paramCount);
builder.newObject(stringArrayDesc);
// Populate the array.
for (int i=0; i<paramCount; i++) {
builder.dup();
builder.loadConstant(i);
builder.loadConstant(params[i].getName());
builder.storeToArray(TypeDesc.STRING);
}
builder.returnValue(TypeDesc.OBJECT);
// Done building the static getTemplateParameterNames method.
} |
1bbf4cff-5af3-4f33-a501-f62195afbc86 | public void setCustomPhone19(crmondemand.xml.opportunity.query.QueryType customPhone19) {
this.customPhone19 = customPhone19;
} |
c95b7d88-3dd7-4e26-ae33-fa2d80869e10 | public void setCustomInteger34(crmondemand.xml.customobject3.query.QueryType customInteger34) {
this.customInteger34 = customInteger34;
} |
8cef874b-5409-4dc8-b9f3-367d9f421819 | public void setCustomObject9Type(crmondemand.xml.customobject6.query.QueryType customObject9Type) {
this.customObject9Type = customObject9Type;
} |
a1ac42ba-c6d6-4bd7-8ce2-4073c8074509 | public void setCustomPickList90(crmondemand.xml.customobject3.query.QueryType customPickList90) {
this.customPickList90 = customPickList90;
} |
b862b116-ee15-4528-9ffb-cc1b4133311e | public void setCustomDate57(java.util.Calendar customDate57) {
this.customDate57 = customDate57;
} |
cd8f7f8b-3e6e-46e3-a3ee-fe1466349daf | public crmondemand.xml.opportunity.query.QueryType getCustomCurrency20() {
return this.customCurrency20;
} |
765e5ab8-5ef9-49dc-82bf-2223cd2dd70e | public crmondemand.xml.contact.query.QueryType getAccountStatus() {
return this.accountStatus;
} |
e9c8ad22-6710-4c48-8f30-a0db3a9bff75 | public void mouseClicked(java.awt.event.MouseEvent evt) {
painelClienteMouseClicked(evt);
} |
a3747243-fd79-4582-9fdb-1926bd616b59 | public java.lang.String getCustomObject12Name() {
return this.customObject12Name;
} |
ebe40189-0a9f-4135-9e33-38fe1b42ec30 | public java.lang.String getCustomObject5IntegrationId() {
return this.customObject5IntegrationId;
} |
5377bf69-ab39-4af7-95c5-e607beba0b09 | public void setCustomText38(crmondemand.xml.customobject3.query.QueryType customText38) {
this.customText38 = customText38;
} |
058f0562-c539-48f0-8315-94cf9144170c | public java.lang.String getCustomText4() {
return this.customText4;
} |
76ac5d3e-7a55-493b-8136-267add67277c | public void run() {
new FrmExercicio6().setVisible(true);
} |
ce62d2c4-5a5a-4ff8-b56f-075aa90db873 | public java.lang.String getCustomText13() {
return this.customText13;
} |
1cc00fd1-0423-4584-a83d-2d57eca35c87 | public void setCustomInteger34(crmondemand.xml.customobject3.query.QueryType customInteger34) {
this.customInteger34 = customInteger34;
} |
11352d44-7e31-470c-b2fb-5fd2d6ca3f26 | public java.lang.String getCreatedByEMailAddr() {
return this.createdByEMailAddr;
} |
09d3a65b-1b46-42fd-a5c8-84fd0162d630 | public void setCustomObject4Id(crmondemand.xml.customobject6.query.QueryType customObject4Id) {
this.customObject4Id = customObject4Id;
} |
2060788f-beae-4298-bcb6-4d2cb26b287a | public crmondemand.xml.contact.query.QueryType getIndexedPick1() {
return this.indexedPick1;
} |
04c67eed-afcf-4e1e-acb9-e292f714351c | public void setCustomDate56(java.util.Calendar customDate56) {
this.customDate56 = customDate56;
} |
ef357ff7-12c2-4e53-87bb-fa79746eeb83 | public java.math.BigDecimal getCustomNumber17() {
return this.customNumber17;
} |
90460787-3594-4c01-9a8b-f9b0cf66d583 | public static String getWaitingData(int i)
{
return waitingData.get(i);
} |
93444745-4feb-404d-b98d-a1b8feb12f19 | public void setCustomText42(crmondemand.xml.opportunity.query.QueryType customText42) {
this.customText42 = customText42;
} |
6177dda7-2d11-4781-b69a-db7c3fb57086 | @Override
public boolean contains(Key key)
{
return get(key) != null;
} |
9f89d185-a87b-44f9-86a5-2c32ee04f5bd | public void run() {
new VCliente().setVisible(true);
} |
3ec7823b-af0c-4100-83c5-e8ae6f87e5e3 | private boolean jj_3R_168() {
if (jj_scan_token(152)) return true;
if (jj_3R_45()) return true;
if (jj_scan_token(153)) return true;
return false;
} |
334d2433-1d38-4255-9f8d-6dfeeca1cee2 | public crmondemand.xml.customobject6.query.QueryType getCourseStatus() {
return this.courseStatus;
} |
e9ca24a6-f1d1-47bc-9e28-e886259a44b2 | public void setOperation(java.lang.String operation) {
this.operation = operation;
} |
5bef3725-0bf3-4b47-a6f4-a67e90b616ea | public static int getNewTotalRating(Equipment e, Player p) {
Player temp = p.copy();
EquipLogic.equipEquipment(e, temp);
return temp.getTotalRating();
} |
d6924f44-2e25-498c-bb54-3444bc01456d | public Timer getTimer() {
return timer;
} |
ea2bef41-b08a-4fb9-885e-3fee6b383fa8 | public crmondemand.xml.customobject6.query.QueryType getCustomPickList28() {
return this.customPickList28;
} |
d018ea50-f5cc-4e1b-b473-5699e7dc46d7 | public void setCustomPickList91(crmondemand.xml.customobject6.query.QueryType customPickList91) {
this.customPickList91 = customPickList91;
} |
8555778d-c9b9-4217-9083-a13b8e3dda8f | public crmondemand.xml.customobject6.query.QueryType getCustomObject1Id() {
return this.customObject1Id;
} |
1b557c6e-4b5c-4b71-a1f7-8adde2be0d41 | public crmondemand.xml.customobject6.query.QueryType getCustomNumber20() {
return this.customNumber20;
} |
54859af9-0761-4feb-bc30-2e82ee0446b7 | public void setPolicyIntegrationId(crmondemand.xml.opportunity.query.QueryType policyIntegrationId) {
this.policyIntegrationId = policyIntegrationId;
} |
31cbd7fa-54a8-49fe-8dcd-e19b919817c2 | @Override
protected ChannelSession getSessionImpl() {
SessionThread thread = (SessionThread)Thread.currentThread();
return thread.getSession();
} |
b88c6a32-0c3d-4216-8075-adf424edc625 | public int getReborns() {
return reborn;
} |
2a8acb1e-1bc8-4102-bc5f-c5fb4d8e2442 | public int getNextFrame(long timeSinceAnimationStart,int animation)
{
return animations.get(animation).getNextFrame(timeSinceAnimationStart);
} |
3e5cc65c-3704-4a56-b47b-cd8ca4198973 | public crmondemand.xml.contact.query.QueryType getCustomNumber6() {
return this.customNumber6;
} |
bb91e415-4b4a-4989-8d86-b668d0833efa | public void setCustomBoolean21(crmondemand.xml.contact.query.QueryType customBoolean21) {
this.customBoolean21 = customBoolean21;
} |
bb167c15-c016-4454-bb4e-d02ac87644a8 | public static Cons yieldConstructorBody(Stella_Class renamed_Class, Cons requiredassignments) {
{ Cons initialvalueassignments = Stella_Class.yieldInitialValueAssignments(renamed_Class, (Stella_Class.decidedToRecycleP(renamed_Class) ? Stella.KWD_INITIAL_VALUE_ONLY : Stella.KWD_ANY_INITIAL_VALUE));
if ((initialvalueassignments == Stella.NIL) &&
((requiredassignments == Stella.NIL) &&
((!(renamed_Class.initializer() != null)) &&
((!renamed_Class.activeP()) &&
(!Stella_Class.decidedToRecycleP(renamed_Class)))))) {
return (Stella_Class.yieldCreationTrees(renamed_Class));
}
return (Stella_Class.yieldCreationTrees(renamed_Class).concatenate(requiredassignments.concatenate(initialvalueassignments.concatenate(Stella_Class.yieldInitializerTrees(renamed_Class).concatenate(((renamed_Class.activeP() ? Cons.cons(Cons.list$(Cons.cons(Stella.SYM_STELLA_RUN_CONSTRUCTOR_DEMONS, Cons.cons(Stella.SYM_STELLA_SELF, Cons.cons(Stella.NIL, Stella.NIL)))), Stella.NIL) : Stella.NIL)).concatenate(Stella.NIL, Stella.NIL), Stella.NIL), Stella.NIL), Stella.NIL), Stella.NIL));
}
} |
55a2734e-65cd-4cb0-8065-f5acadcdddb3 | private void stepForwardInTime() {
if (baseAproxBucket!=null) {
indexL= baseAproxBucket.getKey();
dL = indexL*Delta;
VertexPulse entrance = baseAproxBucket.getEntrance();
entrance.getBLeftTime().unlinkRighBoundTime();
int dv;
while(entrance!=null){
baseAproxBucket.deleteToPassTime(entrance);
dv= entrance.getMinTime();
lowLevelBuckets[dv-dL].insertVertexTime(entrance);
entrance = baseAproxBucket.getEntrance();
}
highLevelBuckets[iH]=null;
int oldBaseKEy= baseAproxBucket.getKey();
baseAproxBucket = baseAproxBucket.deleteBucketToEmpty();
if(baseAproxBucket!=null){
iH = posCalculator(baseAproxBucket.getKey(), oldBaseKEy);
}else{
iH=-1;
jH=-1;
}
}
indexK= indexL + 1;
dK = indexK*Delta;
} |
68d42ffb-0bb2-4f59-bf50-fd89fea50c7b | private final static void buildFileForTable(String filename, char[] chars) {
byte[] bytes = new byte[chars.length * 2];
for (int i = 0; i < chars.length; i++) {
bytes[2 * i] = (byte) (chars[i] >>> 8);
bytes[2 * i + 1] = (byte) (chars[i] & 0xFF);
}
java.io.FileOutputStream stream = null;
try {
stream = new java.io.FileOutputStream(filename);
stream.write(bytes);
} catch(IOException e) {
// ignore
} finally {
if (stream != null) {
try {
stream.close();
} catch (IOException e1) {
// ignore
}
}
}
System.out.println(filename + " creation complete"); //$NON-NLS-1$
} |
b4cfae27-ccbd-4db3-a4c9-3bd11b4a5355 | public static String readAll() {
if (!scanner.hasNextLine()) return null;
// reference: http://weblogs.java.net/blog/pat/archive/2004/10/stupid_scanner_1.html
return scanner.useDelimiter("\\A").next();
} |
c3327ab8-e7da-4d83-af72-846638b447bc | public crmondemand.xml.customobject3.query.QueryType getCustomPickList26() {
return this.customPickList26;
} |
8372ab16-cacc-4bbf-aedf-da5a15d4c9b7 | public void setCustomNumber64(java.math.BigDecimal customNumber64) {
this.customNumber64 = customNumber64;
} |
b3707bf5-01b2-4cb5-8826-9b95b3c2b63b | public static void printRecycleLists() {
System.out.println("Approximate space occupied by recycle lists: " + (Stella.totalRecycleListsSize() * 4) + " bytes");
{ RecycleList list = null;
Cons iter000 = Stella.$ALL_RECYCLE_LISTS$.theConsList;
for (;!(iter000 == Stella.NIL); iter000 = iter000.rest) {
list = ((RecycleList)(iter000.value));
System.out.println(list);
}
}
} |
74946cca-f512-49a7-bcd1-fde65a841d51 | public void setCustomPickList99(crmondemand.xml.opportunity.query.QueryType customPickList99) {
this.customPickList99 = customPickList99;
} |
62227d35-69d2-493f-9088-ba2b33e4cc75 | public void setCustomBoolean19(java.lang.Boolean customBoolean19) {
this.customBoolean19 = customBoolean19;
} |
0a50e315-37f4-46fc-946f-6102f558729f | public void setCustomPickList35(java.lang.String customPickList35) {
this.customPickList35 = customPickList35;
} |
3aa4337a-9252-4a74-b78b-48c0a11221ba | public CMap getToUnicode() {
return toUnicode;
} |
a2b94cdb-8cd6-42ed-813a-5a58ded42257 | public crmondemand.xml.customobject6.query.QueryType getZCustomText98() {
return this.zCustomText98;
} |
132cabd1-cb65-46bf-ac53-16bb46398b99 | public void setFinancialAccountFinancialAccount(java.lang.String financialAccountFinancialAccount) {
this.financialAccountFinancialAccount = financialAccountFinancialAccount;
} |
4f88eee1-2e38-421e-addd-da35121930f7 | public java.util.Calendar getCustomDate18() {
return this.customDate18;
} |
c2ac5ddb-eb4e-459f-b5c7-0b6d53e7e69d | public Exit(String[] args) {
super(args);
} |
7471aa74-c420-457a-a827-d0e56c25b6c1 | public java.util.Calendar getCustomDate53() {
return this.customDate53;
} |
d6451ecb-5a82-4f50-8e9d-e19a8b70e1d9 | public java.lang.String getCustomPickList98() {
return this.customPickList98;
} |
a3ead504-f295-48a2-aa76-eeb726b63f6e | public void setCustomText17(java.lang.String customText17) {
this.customText17 = customText17;
} |
ec243bfb-5658-4fc4-8f6d-b7e680e1e9f2 | private void statistikNilaiMhsActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_statistikNilaiMhsActionPerformed
// TODO add your handling code here:
BarChart piechart = new BarChart(recordPekanMhs);
piechart.pack();
piechart.show();
} |
c318caba-8ca2-4432-97e4-94ef7e89041a | public void setCustomObject7Name(crmondemand.xml.customobject6.query.QueryType customObject7Name) {
this.customObject7Name = customObject7Name;
} |
4dab5b10-dad8-4473-aec5-5a6393eb4fea | public crmondemand.xml.customobject6.query.QueryType getModifiedDate() {
return this.modifiedDate;
} |
99290398-7535-44f1-ab59-ddf0c6cae1e5 | public boolean isShoudProduce()
{
synchronized(productionGuard)
{
return shoudProduce;
}
} |
1997a049-8306-47c9-b6f2-5da9c380f303 | public static Cons javaYieldInstanceVarTree(StorageSlot slot, Stella_Class renamed_Class) {
{ Symbol slotname = Symbol.trueSlotName(slot.slotName, renamed_Class.classType);
StandardObject slottype = (slot.slotContextSensitiveP ? Stella.SGT_STELLA_OBJECT : ((StandardObject)(slot.computeReturnTypeSpec(renamed_Class.classType))));
Keyword allocation = slot.allocation();
Cons allocationform = null;
Cons accessform = null;
String documentation = ((StringWrapper)(KeyValueList.dynamicSlotValue(slot.dynamicSlots, Stella.SYM_STELLA_DOCUMENTATION, Stella.NULL_STRING_WRAPPER))).wrapperValue;
Cons documentationform = Stella.NIL;
if (slot.slotPublicP) {
accessform = Cons.cons(StringWrapper.wrapString("public"), Stella.NIL);
}
else {
accessform = Cons.cons(StringWrapper.wrapString("protected"), Stella.NIL);
}
if (allocation == Stella.KWD_EMBEDDED) {
allocationform = Stella.NIL;
}
else if (allocation == Stella.KWD_INSTANCE) {
allocationform = Stella.NIL;
}
else if (allocation == Stella.KWD_CLASS) {
allocationform = Cons.cons(StringWrapper.wrapString("static"), Stella.NIL);
}
else {
allocationform = Stella.NIL;
}
if (documentation != null) {
documentationform = Cons.cons(StringWrapper.wrapString(documentation), Stella.NIL);
}
return (Cons.list$(Cons.cons(accessform.concatenate(allocationform.concatenate(Cons.cons(StandardObject.javaTranslateTypeSpec(slottype), Stella.NIL), Stella.NIL), Stella.NIL), Cons.cons(Symbol.javaTranslateName(slotname), Cons.cons(documentationform.concatenate(Stella.NIL, Stella.NIL), Stella.NIL)))));
}
} |
965067e4-67b3-4b1c-820f-ec4c4387ffe0 | public void saveAs() {
try {
String chemin = Tools.showSaveDialog(
Tools.getLocalizedString(ActionType.SAVE_AS.name()
+ ".Name")).getAbsolutePath();
if (!chemin.endsWith(".ks"))
chemin += ".ks";
fileName = new File(chemin);
BufferedWriter bw = new BufferedWriter(new FileWriter(fileName));
bw.append(program.getMainPanel().getTextField().getText());
bw.close();
isChanged = false;
} catch (FileNotFoundException e) {
System.err.println(e.getMessage());
} catch (IOException e) {
System.err.println(e.getMessage());
} catch (Exception e) {
System.err.println(e.getMessage());
}
} |
deecf2e0-f66e-418d-b191-1a095455338a | public static JInPiqi.handle_timer_complete parseFrom(java.io.InputStream input)
throws java.io.IOException {
return newBuilder().mergeFrom(input).buildParsed();
} |
25731f29-8f7f-4e5c-9e01-977289d449ec | public java.lang.String getCustomObject4Type() {
return this.customObject4Type;
} |
b198fd82-52b5-4068-b219-55c14c65ae99 | public java.lang.String getCustomText81() {
return this.customText81;
} |
285da096-7435-4af0-81d0-0aef308bd79d | public void setMovesList(String movesList) {
this.movesList = movesList;
} |
81bec747-59bd-4099-8cff-48e904724cc1 | public void setCustomDate27(java.util.Calendar customDate27) {
this.customDate27 = customDate27;
} |
170b2aa0-8b8b-4e3a-b253-fd9a16470656 | public void setPolicyLineofBusiness(java.lang.String policyLineofBusiness) {
this.policyLineofBusiness = policyLineofBusiness;
} |
8ecaee9e-e413-4487-8a9b-dac8b62a747f | public void setCustomPickList53(java.lang.String customPickList53) {
this.customPickList53 = customPickList53;
} |
11760025-9675-4d20-a7e5-237a9fa7f88b | public crmondemand.xml.customobject6.query.QueryType getCustomText22() {
return this.customText22;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.