-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathPrinter.java
More file actions
29 lines (26 loc) · 1.17 KB
/
Printer.java
File metadata and controls
29 lines (26 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Generated automatically from javafx.print.Printer for testing purposes
package javafx.print;
import javafx.beans.property.ReadOnlyObjectProperty;
import javafx.collections.ObservableSet;
import javafx.print.PageLayout;
import javafx.print.PageOrientation;
import javafx.print.Paper;
import javafx.print.PrinterAttributes;
public class Printer
{
protected Printer() {}
public PageLayout createPageLayout(Paper p0, PageOrientation p1, Printer.MarginType p2){ return null; }
public PageLayout createPageLayout(Paper p0, PageOrientation p1, double p2, double p3, double p4, double p5){ return null; }
public PageLayout getDefaultPageLayout(){ return null; }
public PrinterAttributes getPrinterAttributes(){ return null; }
public String getName(){ return null; }
public String toString(){ return null; }
public static ObservableSet<Printer> getAllPrinters(){ return null; }
public static Printer getDefaultPrinter(){ return null; }
public static ReadOnlyObjectProperty<Printer> defaultPrinterProperty(){ return null; }
static public enum MarginType
{
DEFAULT, EQUAL, EQUAL_OPPOSITES, HARDWARE_MINIMUM;
private MarginType() {}
}
}