jdk/test/java/awt/print/PrinterJob/CustomPrintService/SetPrintServiceTest.java
author serb
Tue, 12 Nov 2013 20:24:25 +0400
changeset 21596 0e3a39f29dbc
parent 20413 e991227dd068
permissions -rw-r--r--
8027696: Incorrect copyright header in the tests Reviewed-by: alanb, malenkov, mullan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20413
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
     1
/*
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
     4
 *
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
21596
0e3a39f29dbc 8027696: Incorrect copyright header in the tests
serb
parents: 20413
diff changeset
     7
 * published by the Free Software Foundation.
20413
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
     8
 *
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    13
 * accompanied this code).
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    14
 *
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    18
 *
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    21
 * questions.
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    22
 */
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    23
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    24
import java.awt.print.PrinterException;
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    25
import java.awt.print.PrinterJob;
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    26
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    27
/**
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    28
 * @test
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    29
 * @bug 6870661
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    30
 * @summary tests setPrintService() with a custom implementation
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    31
 * @author reinhapa
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    32
 */
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    33
public class SetPrintServiceTest {
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    34
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    35
    public static void main(String[] args) {
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    36
        PrintServiceStub service = new PrintServiceStub("CustomPrintService");
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    37
        PrinterJob printerJob = PrinterJob.getPrinterJob();
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    38
        try {
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    39
            printerJob.setPrintService(service);
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    40
            System.out.println("Test Passed");
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    41
        } catch (PrinterException e) {
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    42
            throw new RuntimeException("Test FAILED", e);
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    43
        }
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    44
    }
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    45
e991227dd068 6870661: Setting a custom PrintService on a PrinterJob leads to a PrinterException
jgodinez
parents:
diff changeset
    46
}