id
stringlengths 36
36
| text
stringlengths 1
1.25M
|
---|---|
62008702-2992-49f1-b513-16c8b5141b3e | public void handler() {
long ea = EA_DI();
long src = m68ki_read_16(ea);
long res = src >>> 1;
m68ki_write_16(ea, res);
m68k_cpu.n_flag = 0;
m68k_cpu.not_z_flag = res;
m68k_cpu.c_flag = m68k_cpu.x_flag = src & 1;
m68k_cpu.v_flag = 0;
USE_CLKS(8 + 10);
if (m68klog != null) {
fprintf(m68klog, "lsr_ea_di :PC:%d,PPC:%d,mode:%d,dr0:%d,dr1:%d,dr2:%d,dr3:%d,dr4:%d,dr5:%d,dr6:%d,dr7:%d,ar0:%d,ar1:%d,ar2:%d,ar3:%d,ar4:%d,ar5:%d,ar6:%d,ar7:%d,sp0:%d,sp1:%d,sp2:%d,sp3:%d,vbr:%d,sfc:%d,dfc:%d,cacr:%d,caar:%d,ir:%d,t1:%d,t0:%d,s:%d,m:%d,x:%d,n:%d,nz:%d,v:%d,c:%d,intm:%d,ints:%d,stop:%d,halt:%d,intc:%d,prefa:%d,prefd:%d\n", m68k_cpu.pc, m68k_cpu.ppc, m68k_cpu.mode, m68k_cpu.dr[0], m68k_cpu.dr[1], m68k_cpu.dr[2], m68k_cpu.dr[3], m68k_cpu.dr[4], m68k_cpu.dr[5], m68k_cpu.dr[6], m68k_cpu.dr[7], m68k_cpu.ar[0], m68k_cpu.ar[1], m68k_cpu.ar[2], m68k_cpu.ar[3], m68k_cpu.ar[4], m68k_cpu.ar[5], m68k_cpu.ar[6], m68k_cpu.ar[7], m68k_cpu.sp[0], m68k_cpu.sp[1], m68k_cpu.sp[2], m68k_cpu.sp[3], m68k_cpu.vbr, m68k_cpu.sfc, m68k_cpu.dfc, m68k_cpu.cacr, m68k_cpu.caar, m68k_cpu.ir, m68k_cpu.t1_flag, m68k_cpu.t0_flag, m68k_cpu.s_flag, m68k_cpu.m_flag, m68k_cpu.x_flag, m68k_cpu.n_flag, m68k_cpu.not_z_flag, m68k_cpu.v_flag, m68k_cpu.c_flag, m68k_cpu.int_mask, m68k_cpu.int_state, m68k_cpu.stopped, m68k_cpu.halted, m68k_cpu.int_cycles, m68k_cpu.pref_addr, m68k_cpu.pref_data);
}
} |
ecb52c3b-99af-4b14-a573-28a733e35fa1 | public boolean hasBotName() {
return ((bitField0_ & 0x00000004) == 0x00000004);
} |
09528b84-1cfe-4342-9ab5-7fb9512765b2 | @Override
public Object forceInternalCommand(MOB mob, String command, Object... parms)
{
try
{
final Command C=CMClass.getCommand(command);
if(C!=null)
return C.executeInternal(mob,MUDCmdProcessor.METAFLAG_FORCED,parms);
}
catch(final IOException e)
{
Log.errOut("CommonMsgs",e);
}
return Boolean.FALSE;
} |
a48ed200-1767-4dae-b6c4-42b2a712fe10 | public void setZCustomDate17(java.util.Calendar zCustomDate17) {
this.zCustomDate17 = zCustomDate17;
} |
8d426c64-a90b-4e40-b173-7fe6a4ee9f7a | public void setX(int x) {
this.x = x;
} |
039158f1-2583-4233-9387-e4433ca59c56 | public void setCustomInteger25(java.lang.Integer customInteger25) {
this.customInteger25 = customInteger25;
} |
c6f66333-6a25-458f-b1f3-1c65709423b6 | public void setCustomText62(crmondemand.xml.customobject6.query.QueryType customText62) {
this.customText62 = customText62;
} |
5dc3f474-a0a2-4ab9-bde7-1f29cdb86dea | public void setCustomInteger4(java.lang.Integer customInteger4) {
this.customInteger4 = customInteger4;
} |
ffc07978-eebb-4b73-ab21-41f5f4ca32b0 | public void handler() {
long d_dst = get_DY();
long src = m68ki_read_imm_8();
long dst = d_dst;
long res = MASK_OUT_ABOVE_8(dst - src);
set_DY(MASK_OUT_BELOW_8(d_dst) | res);
m68k_cpu.n_flag = GET_MSB_8(res);
m68k_cpu.not_z_flag = res;
m68k_cpu.x_flag = CFLAG_SUB_8(src, dst, res);
m68k_cpu.c_flag = CFLAG_SUB_8(src, dst, res);
m68k_cpu.v_flag = VFLAG_SUB_8(src, dst, res);
USE_CLKS(8);
if (m68klog != null) {
fprintf(m68klog, "subi_d_8 :PC:%d,PPC:%d,mode:%d,dr0:%d,dr1:%d,dr2:%d,dr3:%d,dr4:%d,dr5:%d,dr6:%d,dr7:%d,ar0:%d,ar1:%d,ar2:%d,ar3:%d,ar4:%d,ar5:%d,ar6:%d,ar7:%d,sp0:%d,sp1:%d,sp2:%d,sp3:%d,vbr:%d,sfc:%d,dfc:%d,cacr:%d,caar:%d,ir:%d,t1:%d,t0:%d,s:%d,m:%d,x:%d,n:%d,nz:%d,v:%d,c:%d,intm:%d,ints:%d,stop:%d,halt:%d,intc:%d,prefa:%d,prefd:%d\n", m68k_cpu.pc, m68k_cpu.ppc, m68k_cpu.mode, m68k_cpu.dr[0], m68k_cpu.dr[1], m68k_cpu.dr[2], m68k_cpu.dr[3], m68k_cpu.dr[4], m68k_cpu.dr[5], m68k_cpu.dr[6], m68k_cpu.dr[7], m68k_cpu.ar[0], m68k_cpu.ar[1], m68k_cpu.ar[2], m68k_cpu.ar[3], m68k_cpu.ar[4], m68k_cpu.ar[5], m68k_cpu.ar[6], m68k_cpu.ar[7], m68k_cpu.sp[0], m68k_cpu.sp[1], m68k_cpu.sp[2], m68k_cpu.sp[3], m68k_cpu.vbr, m68k_cpu.sfc, m68k_cpu.dfc, m68k_cpu.cacr, m68k_cpu.caar, m68k_cpu.ir, m68k_cpu.t1_flag, m68k_cpu.t0_flag, m68k_cpu.s_flag, m68k_cpu.m_flag, m68k_cpu.x_flag, m68k_cpu.n_flag, m68k_cpu.not_z_flag, m68k_cpu.v_flag, m68k_cpu.c_flag, m68k_cpu.int_mask, m68k_cpu.int_state, m68k_cpu.stopped, m68k_cpu.halted, m68k_cpu.int_cycles, m68k_cpu.pref_addr, m68k_cpu.pref_data);
}
} |
cf990767-f51f-4526-8d7e-2291d807c7cb | public java.lang.String getCustomText48() {
return this.customText48;
} |
2cd13a1e-7577-4a94-ba28-320c4c33f7a7 | public java.lang.String getCustomPickList89() {
return this.customPickList89;
} |
ce24890f-fe0c-4eab-8064-90aaace6eba1 | public java.math.BigDecimal getCustomNumber17() {
return this.customNumber17;
} |
daa03eac-db91-4bcf-9d38-f2969eb31ec8 | protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.bwapi.proxy.messages.GameMessages.internal_static_messages_UnitId_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.bwapi.proxy.messages.GameMessages.UnitId.class, org.bwapi.proxy.messages.GameMessages.UnitId.Builder.class);
} |
4cd7444f-f195-4f62-a07b-343fc59fcfd6 | public crmondemand.xml.customobject6.query.QueryType getFinancialAdvisorContactFullName() {
return this.financialAdvisorContactFullName;
} |
10d1cf1b-9f2c-4af4-aa8c-7e9a26fcdbce | public java.lang.String getCustomText40() {
return this.customText40;
} |
9190eeac-bdc0-44a0-875d-46ff0e86cd72 | public crmondemand.xml.customobject6.query.QueryType getCreatedByFullName() {
return this.createdByFullName;
} |
9f7200dd-01b0-4357-92d4-fd0580943621 | public java.lang.String getLeadId() {
return this.leadId;
} |
f1f6443f-fabd-415c-a336-21d8ca9724c3 | public static void vpgs() {
ControlFrame.printGoalStack(((QueryIterator)(Logic.$QUERYITERATOR$.get())).baseControlFrame, true);
} |
4e67eb2e-217a-4293-9782-9965528c5c45 | public java.util.Calendar getCustomDate10() {
return this.customDate10;
} |
46b7b4ff-43c8-436c-9f69-044daded9434 | public crmondemand.xml.contact.query.QueryType getCustomPhone2() {
return this.customPhone2;
} |
f0bdf3c8-84e8-427c-9b30-caacb16c653e | public void setFundRequestExternalSystemId(crmondemand.xml.customobject6.query.QueryType fundRequestExternalSystemId) {
this.fundRequestExternalSystemId = fundRequestExternalSystemId;
} |
7e99a759-03b9-497e-a003-61a93ea4b3cd | public void setCustomPickList81(java.lang.String customPickList81) {
this.customPickList81 = customPickList81;
} |
534d9e7e-2b54-437c-8d56-15e2f93921e3 | public void setCustomNumber5(crmondemand.xml.customobject6.query.QueryType customNumber5) {
this.customNumber5 = customNumber5;
} |
ee16bc87-929d-42ba-8dbd-d09482762317 | public void setZCustomCurrency14(java.math.BigDecimal zCustomCurrency14) {
this.zCustomCurrency14 = zCustomCurrency14;
} |
96ab0dea-bcad-4a46-83fb-1c95dfec9432 | public crmondemand.xml.customobject6.query.QueryType getAccreditationStatus() {
return this.accreditationStatus;
} |
3178f2e6-76bf-4653-b99d-a0b9bff2f377 | public java.lang.String getCustomPickList2() {
return this.customPickList2;
} |
33d3bbf0-0599-4f37-8b77-759c6d49acf8 | public crmondemand.xml.contact.query.QueryType getCustomNumber39() {
return this.customNumber39;
} |
bab44546-2c1a-419f-92a8-ab368bd7e634 | public java.lang.String getCustomPhone9() {
return this.customPhone9;
} |
aecdfeb8-f665-4a66-892c-ee5d2930aa7d | public java.lang.String getCustomPickList95() {
return this.customPickList95;
} |
6d480e28-6613-4625-be49-414a215a3525 | public void setDealRegistrationDealRegistrationName(java.lang.String dealRegistrationDealRegistrationName) {
this.dealRegistrationDealRegistrationName = dealRegistrationDealRegistrationName;
} |
e524cc8c-ccab-4f79-8545-608502d802ac | public void setCustomObject6IntegrationId(crmondemand.xml.contact.query.QueryType customObject6IntegrationId) {
this.customObject6IntegrationId = customObject6IntegrationId;
} |
fc6c7ece-a60e-4363-aa1f-f4e03fe1a48e | public void setCustomObject5Name(java.lang.String customObject5Name) {
this.customObject5Name = customObject5Name;
} |
53eebb54-fabe-41b3-9bb3-531009d38b1a | public java.lang.String getOpportunityIntegrationId() {
return this.opportunityIntegrationId;
} |
f286af35-5c37-4cc8-9c01-0a3a753cc2eb | public java.util.Calendar getCustomDate7() {
return this.customDate7;
} |
b9a71cc0-403b-4fd4-bbd4-e48925b191ad | public java.lang.String getCustomPickList56() {
return this.customPickList56;
} |
f66c1276-0ab4-438c-a5b1-5a14aedd001e | void setVariationStyle (boolean hide, boolean current)
{
undonode();
VHide = hide;
VCurrent = current;
setnode();
updateall();
copy();
} |
25e3ab10-7474-4503-ad7a-7e4b97791438 | @Override
public DVector blankRow()
{
final DVector editRow = new DVector(2);
for(int c=0;c<columns().size();c++)
{
if(columns().elementAt(c) instanceof List)
editRow.addElement(columns().elementAt(c),"");
}
return editRow;
} |
00ab3af8-dc5d-41f9-a24e-fdb3663b14b6 | @Override
public int getAttributesBitmap()
{
return attributesBitmap;
} |
6b77a7a3-cc1e-4151-9583-09bf7482c7d3 | public void connButton() {
if (conn==null || elementStat.get("conn")==0) {
conn=new TcpIp(app.getIP(), app.getPort(), this);
connDelay=conn.getConDelay()/1000;
setConnButon(langValues.get("Connecting")+" ("+ (connDelay+1) +")", -1);
connTimer = new Timer("connectTimer");
connTimer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
setConnButon(langValues.get("Connecting")+" ("+ (connDelay--) +")", -1);
if (connDelay==0) {
this.cancel();
}
}
}, 0, 1000);
}
else if (elementStat.get("conn")==-1) {
conn.close();
conn=null;
setConnButon(langValues.get("Connect"), 0);
}
else {
conn.close();
conn=null;
setConnButon(langValues.get("Connect"), 0);
}
System.out.println("connButton");
} |
e7b75583-753a-4b56-b6da-3ce67ba004b1 | public void setCustomPickList4(java.lang.String customPickList4) {
this.customPickList4 = customPickList4;
} |
34fa7d9a-d81a-4cc5-89d8-0b6a4c0a5211 | public long getExecutionTime() {
long ret;
ret = finishDate.getTime() - startDate.getTime();
return ret;
} |
e5a638ab-c156-4d81-8907-c06bbc6bbfe3 | public java.lang.String getFundStatus() {
return this.fundStatus;
} |
3d319419-132b-4920-be5b-37bfd4738877 | public crmondemand.xml.opportunity.query.QueryType getCustomBoolean31() {
return this.customBoolean31;
} |
7313d2e7-10a9-4124-9056-3db691b66c61 | public void setCustomBoolean5(java.lang.Boolean customBoolean5) {
this.customBoolean5 = customBoolean5;
} |
7661fed3-4463-4ed4-b7e2-aea6da828ee4 | public void setCustomPickList95(crmondemand.xml.contact.query.QueryType customPickList95) {
this.customPickList95 = customPickList95;
} |
bf246be3-7c39-48ff-af08-85be7b65c825 | public void setCustomDate23(java.util.Calendar customDate23) {
this.customDate23 = customDate23;
} |
9317f6ac-cbc7-40a1-b69c-618e4a6a38d5 | public crmondemand.xml.customobject3.query.QueryType getCustomBoolean22() {
return this.customBoolean22;
} |
58c2f8d6-84d2-4bc5-8bf3-6738e83fa2c6 | public void setCustomPickList29(crmondemand.xml.contact.query.QueryType customPickList29) {
this.customPickList29 = customPickList29;
} |
8bf50786-b046-499b-afbb-32621ad8f791 | public void setCustomNumber4(java.math.BigDecimal customNumber4) {
this.customNumber4 = customNumber4;
} |
8b3022ef-5bb3-4393-a695-9a94309eae0c | public void setCustomBoolean0(crmondemand.xml.contact.query.QueryType customBoolean0) {
this.customBoolean0 = customBoolean0;
} |
718afb74-5a65-41ce-8921-859ce6ae5ff9 | public java.lang.String getMessageResponseId() {
return this.messageResponseId;
} |
b2d1ce1c-8a64-4b13-8676-8dda58c5f831 | public crmondemand.xml.customobject3.query.QueryType getCustomPickList91() {
return this.customPickList91;
} |
5369e0b7-e307-412f-938e-fc3ef824a927 | */
public Hashtable getEntries() {
return entries;
} |
2af2c959-82c6-4c52-9d32-e727220eb106 | public java.util.Calendar getCustomDate17() {
return this.customDate17;
} |
27037f50-b08a-4844-8497-f57132ede163 | public void setCustomText60(crmondemand.xml.opportunity.query.QueryType customText60) {
this.customText60 = customText60;
} |
7de8e60e-9276-4aa2-88f2-29b802b8df78 | public java.lang.String getCustomText85() {
return this.customText85;
} |
247922ef-14d1-445c-aa85-39dc8e9e7ca5 | public java.lang.String getCustomObject10ExternalSystemId() {
return this.customObject10ExternalSystemId;
} |
cd16de9e-6c17-48ed-a6df-3acd8659af6c | public crmondemand.xml.customobject6.query.QueryType getOpportunityName() {
return this.opportunityName;
} |
24598996-9204-4209-9be9-ca6a91dadfc6 | public crmondemand.xml.customobject6.query.QueryType getCustomObject5IntegrationId() {
return this.customObject5IntegrationId;
} |
0e2135b9-f2c3-4234-96eb-7dec74a7c41b | public void setCustomCurrency23(crmondemand.xml.contact.query.QueryType customCurrency23) {
this.customCurrency23 = customCurrency23;
} |
42b72058-10b4-4967-822e-d6d1d6104b8a | public void setCustomPickList84(crmondemand.xml.customobject6.query.QueryType customPickList84) {
this.customPickList84 = customPickList84;
} |
8804f42f-3d73-4633-8736-578427cb8518 | public void setCustomText3(java.lang.String customText3) {
this.customText3 = customText3;
} |
a99f5cd6-0bd5-4aff-afdb-02a3cb70c755 | public void setIndexedNumber0(java.math.BigDecimal indexedNumber0) {
this.indexedNumber0 = indexedNumber0;
} |
de391a78-66a4-468f-b429-34bf4d32d9e4 | public static WriteHandlerPtr eeprom_w = new WriteHandlerPtr() { public void handler(int offset, int data)
{
if (errorlog!=null) fprintf(errorlog,"%06x: write %04x to 108000\n",cpu_get_pc(),data);
if ((data & 0x00ff0000) == 0)
{
/* bit 0 = coin counter */
coin_counter_w.handler(0,data & 0x01);
/* bit 2 is data */
/* bit 3 is clock (active high) */
/* bit 4 is cs (active low) */
EEPROM_write_bit(data & 0x04);
EEPROM_set_cs_line((data & 0x10)!=0 ? CLEAR_LINE : ASSERT_LINE);
EEPROM_set_clock_line((data & 0x08)!=0 ? ASSERT_LINE : CLEAR_LINE);
}
else
{
/* bit 8 = enable sprite ROM reading */
K053246_set_OBJCHA_line((data & 0x0100)!=0 ? ASSERT_LINE : CLEAR_LINE);
/* bit 9 = enable char ROM reading through the video RAM */
K052109_set_RMRD_line((data & 0x0200)!=0 ? ASSERT_LINE : CLEAR_LINE);
}
} } |
36cf1860-6fd5-4095-978b-2e0d52a0b592 | public void setUpdatedByAlias(crmondemand.xml.opportunity.query.QueryType updatedByAlias) {
this.updatedByAlias = updatedByAlias;
} |
73840ec7-446e-4d2b-890f-38d044342e59 | public void setCustomCurrency17(java.math.BigDecimal customCurrency17) {
this.customCurrency17 = customCurrency17;
} |
f3655b6b-1eda-4812-a9fb-223263f1e9e6 | public java.lang.String getCustomText32() {
return this.customText32;
} |
54e8e9ea-eb3d-4a37-8b00-a1bd900822a0 | public void setCustomBoolean23(crmondemand.xml.customobject6.query.QueryType customBoolean23) {
this.customBoolean23 = customBoolean23;
} |
db7387bf-98f7-47dc-bdcf-0cdfa6239e55 | public void setCustomObject6IntegrationId(java.lang.String customObject6IntegrationId) {
this.customObject6IntegrationId = customObject6IntegrationId;
} |
ea3d5317-905e-479f-a16a-a9e72ebb1211 | public crmondemand.xml.customobject6.query.QueryType getCustomPickList86() {
return this.customPickList86;
} |
dee795be-317e-47e9-a36b-949a3084ab07 | public void setDealerExternalSystemId(java.lang.String dealerExternalSystemId) {
this.dealerExternalSystemId = dealerExternalSystemId;
} |
ad9f253a-eae0-4d67-b4d4-491880b7cc6d | public void setCustomNumber32(java.math.BigDecimal customNumber32) {
this.customNumber32 = customNumber32;
} |
a797c363-4d71-466a-b467-9d2c6a2950a2 | public void setCustomBoolean28(crmondemand.xml.contact.query.QueryType customBoolean28) {
this.customBoolean28 = customBoolean28;
} |
8ce712cd-3e5b-4779-8d09-585a076546d3 | public java.lang.String getAccountIntegrationId() {
return this.accountIntegrationId;
} |
77e7f1e9-4519-4c42-9db7-2714204ae5a4 | public void setIndexedPick3(crmondemand.xml.customobject6.query.QueryType indexedPick3) {
this.indexedPick3 = indexedPick3;
} |
0bad8dfa-a823-4f58-bcc2-524f9d2ae534 | public java.lang.Integer getCustomInteger8() {
return this.customInteger8;
} |
15a5b4dd-9aee-4a0c-946a-72af4d273fac | public void setCustomNumber16(crmondemand.xml.contact.query.QueryType customNumber16) {
this.customNumber16 = customNumber16;
} |
a9a8fe58-6ae9-462c-9ba5-3c3e1feed1f0 | public void setCustomPickList48(java.lang.String customPickList48) {
this.customPickList48 = customPickList48;
} |
1a391047-7201-4bb0-bd6e-d6a650a0b775 | public java.lang.String getAttachFileExt() {
return this.attachFileExt;
} |
e8cbbf2b-d847-4ab7-9fc2-e503dc3b0eac | public java.math.BigDecimal getCustomCurrency24() {
return this.customCurrency24;
} |
35df649a-5e11-4849-9a24-cd81ad6e33db | public void saveFile() {
// Ensure we actually CAN save the document in the first place
if (!havePermissionToModifyDocument()) {
org.icepdf.ri.util.Resources.showMessageDialog(
viewer,
JOptionPane.INFORMATION_MESSAGE,
messageBundle,
"viewer.dialog.saveAs.noPermission.title",
"viewer.dialog.saveAs.noPermission.msg");
return;
}
// Create and display a file saving dialog
final JFileChooser fileChooser = new JFileChooser();
fileChooser.setDialogTitle(messageBundle.getString("viewer.dialog.saveAs.title"));
fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
fileChooser.addChoosableFileFilter(FileExtensionUtils.getPDFFileFilter());
if (ViewModel.getDefaultFile() != null) {
fileChooser.setCurrentDirectory(ViewModel.getDefaultFile());
}
// See if we can come up with a default file name
// We want the bytes from whence, but the file name of origin
String origin = document.getDocumentOrigin();
String originalFileName = null;
if (origin != null) {
int lastSeparator = Math.max(
Math.max(
origin.lastIndexOf("/"),
origin.lastIndexOf("\\")),
origin.lastIndexOf(File.separator) // Might not be / or \
);
if (lastSeparator >= 0) {
originalFileName = origin.substring(lastSeparator + 1);
if (originalFileName != null && originalFileName.length() > 0) {
// Set the selected file to a slightly modified name of the original
fileChooser.setSelectedFile(new File(generateNewSaveName(originalFileName)));
} else {
originalFileName = null;
}
}
}
// show the dialog
int returnVal = fileChooser.showSaveDialog(viewer);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fileChooser.getSelectedFile();
// make sure file path being saved to is valid
String extension = FileExtensionUtils.getExtension(file);
if (extension == null) {
org.icepdf.ri.util.Resources.showMessageDialog(
viewer,
JOptionPane.INFORMATION_MESSAGE,
messageBundle,
"viewer.dialog.saveAs.noExtensionError.title",
"viewer.dialog.saveAs.noExtensionError.msg");
saveFile();
} else if (!extension.equals(FileExtensionUtils.pdf)) {
org.icepdf.ri.util.Resources.showMessageDialog(
viewer,
JOptionPane.INFORMATION_MESSAGE,
messageBundle,
"viewer.dialog.saveAs.extensionError.title",
"viewer.dialog.saveAs.extensionError.msg",
file.getName());
saveFile();
} else if ((originalFileName != null) &&
(originalFileName.equalsIgnoreCase(file.getName()))) {
// Ensure a unique filename
org.icepdf.ri.util.Resources.showMessageDialog(
viewer,
JOptionPane.INFORMATION_MESSAGE,
messageBundle,
"viewer.dialog.saveAs.noneUniqueName.title",
"viewer.dialog.saveAs.noneUniqueName.msg",
file.getName());
saveFile();
} else {
// save file stream
try {
// If we don't know where the file came from, it's because we
// used Document.setInputStream() or Document.setByteArray(),
// or we used setUrl() with disk caching disabled.
// with no path or URL as the origin.
// Note that we used to detect scenarios where we could access
// the file directly, or re-download it, to avoid locking our
// internal data structures for long periods for large PDFs,
// but that could cause problems with slow network links too,
// and would complicate the incremental update code, so we're
// harmonising on this approach.
FileOutputStream fileOutputStream = new FileOutputStream(file);
BufferedOutputStream buf = new BufferedOutputStream(
fileOutputStream, 4096 * 2);
document.saveToOutputStream(buf);
buf.flush();
fileOutputStream.flush();
buf.close();
fileOutputStream.close();
} catch (MalformedURLException e) {
logger.log(Level.FINE, "Malformed URL Exception ", e);
} catch (IOException e) {
logger.log(Level.FINE, "IO Exception ", e);
}
// save the default directory
ViewModel.setDefaultFile(file);
}
}
} |
5f879f87-611f-4592-a3fc-b0e377bdd87b | public void setCustomNumber14(java.math.BigDecimal customNumber14) {
this.customNumber14 = customNumber14;
} |
456c3423-6ea5-466a-8e0c-1830c76521e6 | public crmondemand.xml.contact.query.QueryType getCustomPickList66() {
return this.customPickList66;
} |
a4f453de-947b-4fe5-925f-1f919e8f95c4 | public void setCustomDate3(crmondemand.xml.opportunity.query.QueryType customDate3) {
this.customDate3 = customDate3;
} |
bf50cac5-a412-42dd-b203-8cc9c9c043a3 | public void utworzPlikExcela(String plik) {
XSSFWorkbook wb = new XSSFWorkbook();
wb.createSheet("wklej_projekty");
//zapisz plik
String fName = plik;
FileOutputStream fileOut = null;
try{
fileOut = new FileOutputStream(fName);
wb.write(fileOut);
} catch (Exception e){
e.printStackTrace();
}
} |
14346221-a405-420a-968a-6fa1328f02f2 | */
public static int PyObject_RichCompareBool(Pointer<PyObject > PyObjectPtr1, Pointer<PyObject > PyObjectPtr2, int int1) {
return PyObject_RichCompareBool(Pointer.getPeer(PyObjectPtr1), Pointer.getPeer(PyObjectPtr2), int1);
} |
eb1ea29a-c453-4543-9817-e06429d8fc09 | public String generateHtmlTable(String[][] matrix, TableStyle style); |
4f6bad0d-1f20-47e5-824a-c38821aacbb0 | public com.google.protobuf.DescriptorProtos.MethodOptions build() {
com.google.protobuf.DescriptorProtos.MethodOptions result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
} |
e4fb9630-1bba-4cf6-a746-f3cf463c845e | public java.util.Calendar getCustomDate22() {
return this.customDate22;
} |
a3e7b9ac-e7ea-473b-9eeb-c8327725f1ec | public void setBusinessAccountExternalSystemId(crmondemand.xml.contact.query.QueryType businessAccountExternalSystemId) {
this.businessAccountExternalSystemId = businessAccountExternalSystemId;
} |
8b9a1c1b-a4e8-4deb-b154-1024320cf806 | public void setCustomObject2Name(crmondemand.xml.opportunity.query.QueryType customObject2Name) {
this.customObject2Name = customObject2Name;
} |
55977c34-f661-4285-90c7-fece5198fb8f | public crmondemand.xml.opportunity.query.QueryType getOwnerAlias() {
return this.ownerAlias;
} |
600a268f-aa71-4a76-843b-0d332f00f1cf | public void setIntegrationId(crmondemand.xml.contact.query.QueryType integrationId) {
this.integrationId = integrationId;
} |
7f5577ec-9bb0-4021-8fcc-b08ce02f4efc | @Override
public void actionPerformed(ActionEvent e) {
Quiz.setPanel(panel, BonesMenu.panel);
} |
6165f0e6-1d49-4fd9-afd5-42bfd71b5c65 | @Override
public short getAgentPort() {
return m_agentPort;
} |
a49773c4-dead-4991-832c-cbf26b1c4f0e | public void setPolicyStatus(java.lang.String policyStatus) {
this.policyStatus = policyStatus;
} |
1b152c6f-ec7f-4392-ab68-edac763e268a | public void setPrincipalPartnerAccountId(java.lang.String principalPartnerAccountId) {
this.principalPartnerAccountId = principalPartnerAccountId;
} |
06b6014b-7e72-49ae-abd9-dbda9aad244e | public void setSearchspec(java.lang.String searchspec) {
this.searchspec = searchspec;
} |
03f9f2f4-e0b4-4239-8bfa-6708f109f4c5 | public crmondemand.xml.customobject6.query.QueryType getCustomNumber28() {
return this.customNumber28;
} |
bfddae20-7ae9-4eb2-b4d8-14f314a68c5d | public crmondemand.xml.customobject6.query.QueryType getCustomObject5Type() {
return this.customObject5Type;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.