Files
codeql/java/ql/test/stubs/javafx-web/javafx/print/PaperSource.java
Tony Torralba 393a0759db More stubs
2023-03-10 12:35:13 +01:00

21 lines
663 B
Java
Generated

// Generated automatically from javafx.print.PaperSource for testing purposes
package javafx.print;
public class PaperSource
{
protected PaperSource() {}
public String getName(){ return null; }
public String toString(){ return null; }
public static PaperSource AUTOMATIC = null;
public static PaperSource BOTTOM = null;
public static PaperSource ENVELOPE = null;
public static PaperSource LARGE_CAPACITY = null;
public static PaperSource MAIN = null;
public static PaperSource MANUAL = null;
public static PaperSource MIDDLE = null;
public static PaperSource SIDE = null;
public static PaperSource TOP = null;
}