Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod2006-07-17 16:01:41 +0000
committerCarolyn MacLeod2006-07-17 16:01:41 +0000
commit7171ce75440e1c2f381de2d9486e536f525ae21d (patch)
tree6cf1cca33bbf426a58019284d0bd9ef7e5157f40 /bundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java
parentac473adfcb9983f414d3da15b8b15f56fca50498 (diff)
downloadeclipse.platform.swt-7171ce75440e1c2f381de2d9486e536f525ae21d.tar.gz
eclipse.platform.swt-7171ce75440e1c2f381de2d9486e536f525ae21d.tar.xz
eclipse.platform.swt-7171ce75440e1c2f381de2d9486e536f525ae21d.zip
bug 24796
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java
index a6675f30be..98ef20c813 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java
@@ -35,15 +35,18 @@ public final class PrinterData extends DeviceData {
/**
* the printer driver
* On Windows systems, this is the name of the driver (often "winspool").
+ * On Mac OSX, this is the destination type ("Printer", "Fax", "File", or "Preview").
* On X/Window systems, this is the name of a display connection to the
* Xprt server (the default is ":1").
+ * On GTK+, this is the backend type name (eg. GtkPrintBackendCups).
*/
+ // TODO: note that this api is not finalized for GTK+
public String driver;
/**
* the name of the printer
* On Windows systems, this is the name of the 'device'.
- * On X/Window systems, this is the printer's 'name'.
+ * On Mac OSX, X/Window systems, and GTK+, this is the printer's 'name'.
*/
public String name;

Back to the top