jdk/src/java.desktop/share/classes/sun/print/ServiceDialog.java
changeset 32865 f9cb6e427f9e
parent 29008 e368342daf04
child 37691 8cd8bdd9280c
equal deleted inserted replaced
32864:2a338536e642 32865:f9cb6e427f9e
    85 public class ServiceDialog extends JDialog implements ActionListener {
    85 public class ServiceDialog extends JDialog implements ActionListener {
    86 
    86 
    87     /**
    87     /**
    88      * Waiting print status (user response pending).
    88      * Waiting print status (user response pending).
    89      */
    89      */
    90     public final static int WAITING = 0;
    90     public static final int WAITING = 0;
    91 
    91 
    92     /**
    92     /**
    93      * Approve print status (user activated "Print" or "OK").
    93      * Approve print status (user activated "Print" or "OK").
    94      */
    94      */
    95     public final static int APPROVE = 1;
    95     public static final int APPROVE = 1;
    96 
    96 
    97     /**
    97     /**
    98      * Cancel print status (user activated "Cancel");
    98      * Cancel print status (user activated "Cancel");
    99      */
    99      */
   100     public final static int CANCEL = 2;
   100     public static final int CANCEL = 2;
   101 
   101 
   102     private static final String strBundle = "sun.print.resources.serviceui";
   102     private static final String strBundle = "sun.print.resources.serviceui";
   103     private static final Insets panelInsets = new Insets(6, 6, 6, 6);
   103     private static final Insets panelInsets = new Insets(6, 6, 6, 6);
   104     private static final Insets compInsets = new Insets(3, 6, 3, 6);
   104     private static final Insets compInsets = new Insets(3, 6, 3, 6);
   105 
   105