306307308309310311312313314315
*/ private void writeJobToDisk () throws IOException { FileOutputStream fout = new FileOutputStream (filename); JCEPOutputStream oout = new JCEPOutputStream (fout, annotation); oout.writeObject (this); oout.close (); } }