11841185118611871188118911901191
if (pdf == null) return null; return pdf.load_font(fontname, encoding, optlist); } catch (IOException e) { throw new QuercusModuleException(e); } }
12151216121712181219122012211222
if (pdf == null) return null; return pdf.load_image(imageType, path, optlist); } catch (IOException e) { throw new QuercusModuleException(e); } }
16061607160816091610161116121613
if (pdf == null) return false; return pdf.setfont(font, size); } catch (IOException e) { throw new QuercusModuleException(e); } }
299300301302303304305306
public static int xa_status() { try { return getUserTransaction().getStatus(); } catch (Exception e) { throw new QuercusModuleException(e); } }
316317318319320321322323
Context ic = new InitialContext(); return ((UserTransaction) ic.lookup("java:comp/UserTransaction")); } catch (NamingException e) { throw new QuercusModuleException(e); } }
345346347348349350351352
exploded.put(entry.getKey(), entry.getValue()); } return exploded; } catch (MalformedObjectNameException e) { throw new QuercusModuleException(e); } }
390391392393394395396397
else objectName = new ObjectName(domain, entries); return objectName.getCanonicalName(); } catch (MalformedObjectNameException e) { throw new QuercusModuleException(e); } }
422423424425426427428429
out.close(); return NullValue.NULL; } catch (IOException e) { throw new QuercusModuleException(e); } }
105106107108109110111112
_charset = parser.getCharset(); parser.close(); } catch (IOException e) { throw new QuercusModuleException(e.getMessage()); } }
11441145114611471148114911501151
public final void println(Object v) { try { getOut().println(v); } catch (IOException e) { throw new QuercusModuleException(e); } }