* @return True if print job created successfull
* @throws javax.print.PrintException
*/
public boolean print() throws PrintException {
if (ps == null) {
throw new NullPrintServiceException(err);
} else if (rawCmds == null) {
throw new NullCommandException(err);
}
SimpleDoc doc = new SimpleDoc(rawCmds.getBytes(), docFlavor, docAttr);
DocPrintJob pj = ps.createPrintJob();