630631632633634635636637638639
{ out.write(string); } catch (IOException e) { throw new WrappedRuntimeException(getClass(), e); } } }
655656657658659660661662663664
{ out.write(string.toString()); } catch (IOException e) { throw new WrappedRuntimeException(getClass(), e); } } }
663664665666667668669670671672
public void write(String string) { if (string != null) { try { out.write(string); } catch (IOException e) { throw new WrappedRuntimeException(getClass(), e); } } }
683684685686687688689690691692
public void write(Object string) { if (string != null) { try { out.write(string.toString()); } catch (IOException e) { throw new WrappedRuntimeException(getClass(), e); } } }
1333133413351336133713381339134013411342
exportDecorated); try { writeExport(exportView); } catch (IOException e) { throw new WrappedRuntimeException(getClass(), e); } return SKIP_PAGE; }