Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsmallsql <smallsql>2009-10-02 22:11:51 +0400
committersmallsql <smallsql>2009-10-02 22:11:51 +0400
commit1b16bbc4c5a9dfb1986062a173f0b2ebe0291a77 (patch)
tree0c1b116af12d1d424052835ca252b9e7837e11b8 /openjdk/sun/print
parent4a58e5042a7e975039af4966741afc77c125e600 (diff)
Add getDefaultPrinterName and getAllPrinterNames to the PrintPeer
Diffstat (limited to 'openjdk/sun/print')
-rw-r--r--openjdk/sun/print/PrintPeer.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/openjdk/sun/print/PrintPeer.java b/openjdk/sun/print/PrintPeer.java
index 01693579..0c5c1ceb 100644
--- a/openjdk/sun/print/PrintPeer.java
+++ b/openjdk/sun/print/PrintPeer.java
@@ -31,4 +31,8 @@ package sun.print;
public interface PrintPeer{
public Object getPrinterStatus(String PrinterName, Class category);
+
+ public String getDefaultPrinterName();
+
+ public String[] getAllPrinterNames();
}