home *** CD-ROM | disk | FTP | other *** search
- package java.awt.print;
-
- import java.awt.AWTError;
- import java.security.PrivilegedAction;
-
- class PrinterJob$1 implements PrivilegedAction {
- public Object run() {
- String var1 = System.getProperty("java.awt.printerjob", (String)null);
-
- try {
- return (PrinterJob)Class.forName(var1).newInstance();
- } catch (ClassNotFoundException var5) {
- throw new AWTError("PrinterJob not found: " + var1);
- } catch (InstantiationException var6) {
- throw new AWTError("Could not instantiate PrinterJob: " + var1);
- } catch (IllegalAccessException var7) {
- throw new AWTError("Could not access PrinterJob: " + var1);
- }
- }
- }
-