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

20 lines
616 B
Java
Generated

// Generated automatically from javafx.geometry.Insets for testing purposes
package javafx.geometry;
public class Insets
{
protected Insets() {}
public Insets(double p0){}
public Insets(double p0, double p1, double p2, double p3){}
public String toString(){ return null; }
public boolean equals(Object p0){ return false; }
public final double getBottom(){ return 0; }
public final double getLeft(){ return 0; }
public final double getRight(){ return 0; }
public final double getTop(){ return 0; }
public int hashCode(){ return 0; }
public static Insets EMPTY = null;
}