< prev index next >

test/java/awt/print/PrinterJob/PrintAttributeUpdateTest.java

Print this page




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24  /*
  25   @test
  26   @bug 8042713
  27   @summary  Print Dialog does not update attribute set with page range
  28   @run main/manual PrintAttributeUpdateTest
  29  */
  30 import java.awt.Component;
  31 import java.awt.Graphics;
  32 import java.awt.print.PageFormat;
  33 import java.awt.print.Pageable;
  34 import java.awt.print.Printable;
  35 import java.awt.print.PrinterJob;

  36 import javax.print.attribute.Attribute;
  37 import javax.print.attribute.HashPrintRequestAttributeSet;
  38 import javax.print.attribute.standard.DialogTypeSelection;
  39 import javax.print.attribute.standard.PageRanges;
  40 import javax.swing.JOptionPane;
  41 import javax.swing.SwingUtilities;
  42 
  43 public class PrintAttributeUpdateTest implements Pageable, Printable {
  44 
  45     public static void main(String args[]) throws Exception {




  46         String[] instructions
  47                 = {
  48                     "Select Pages Range From instead of All in print dialog. ",
  49                     "Then select Print"
  50                 };
  51         SwingUtilities.invokeAndWait(() -> {
  52             JOptionPane.showMessageDialog((Component) null,
  53                     instructions, "Instructions",
  54                     JOptionPane.INFORMATION_MESSAGE);
  55         });
  56         HashPrintRequestAttributeSet as = new HashPrintRequestAttributeSet();
  57         PrinterJob j = PrinterJob.getPrinterJob();
  58         j.setPageable(new PrintAttributeUpdateTest());
  59         as.add(DialogTypeSelection.NATIVE);
  60         j.printDialog(as);
  61         if (as.containsKey(PageRanges.class) == false) {
  62             throw new RuntimeException("Print Dialog did not update "
  63                     + " attribute set with page range");
  64         }
  65         Attribute attrs[] = as.toArray();




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24  /*
  25   @test
  26   @bug 8042713 8170578
  27   @summary  Print Dialog does not update attribute set with page range
  28   @run main/manual PrintAttributeUpdateTest
  29  */
  30 import java.awt.Component;
  31 import java.awt.Graphics;
  32 import java.awt.print.PageFormat;
  33 import java.awt.print.Pageable;
  34 import java.awt.print.Printable;
  35 import java.awt.print.PrinterJob;
  36 import javax.print.PrintService;
  37 import javax.print.attribute.Attribute;
  38 import javax.print.attribute.HashPrintRequestAttributeSet;
  39 import javax.print.attribute.standard.DialogTypeSelection;
  40 import javax.print.attribute.standard.PageRanges;
  41 import javax.swing.JOptionPane;
  42 import javax.swing.SwingUtilities;
  43 
  44 public class PrintAttributeUpdateTest implements Pageable, Printable {
  45 
  46     public static void main(String args[]) throws Exception {
  47         PrintService prtSrv = PrinterJob.getPrinterJob().getPrintService();
  48         if (!prtSrv.isAttributeCategorySupported(PageRanges.class)) {
  49             return;
  50         }
  51         String[] instructions
  52                 = {
  53                     "Select Pages Range From instead of All in print dialog. ",
  54                     "Then select Print"
  55                 };
  56         SwingUtilities.invokeAndWait(() -> {
  57             JOptionPane.showMessageDialog((Component) null,
  58                     instructions, "Instructions",
  59                     JOptionPane.INFORMATION_MESSAGE);
  60         });
  61         HashPrintRequestAttributeSet as = new HashPrintRequestAttributeSet();
  62         PrinterJob j = PrinterJob.getPrinterJob();
  63         j.setPageable(new PrintAttributeUpdateTest());
  64         as.add(DialogTypeSelection.NATIVE);
  65         j.printDialog(as);
  66         if (as.containsKey(PageRanges.class) == false) {
  67             throw new RuntimeException("Print Dialog did not update "
  68                     + " attribute set with page range");
  69         }
  70         Attribute attrs[] = as.toArray();


< prev index next >