mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
28 lines
1.1 KiB
Java
Generated
28 lines
1.1 KiB
Java
Generated
// Generated automatically from javafx.geometry.Rectangle2D for testing purposes
|
|
|
|
package javafx.geometry;
|
|
|
|
import javafx.geometry.Point2D;
|
|
|
|
public class Rectangle2D
|
|
{
|
|
protected Rectangle2D() {}
|
|
public Rectangle2D(double p0, double p1, double p2, double p3){}
|
|
public String toString(){ return null; }
|
|
public boolean contains(Point2D p0){ return false; }
|
|
public boolean contains(Rectangle2D p0){ return false; }
|
|
public boolean contains(double p0, double p1){ return false; }
|
|
public boolean contains(double p0, double p1, double p2, double p3){ return false; }
|
|
public boolean equals(Object p0){ return false; }
|
|
public boolean intersects(Rectangle2D p0){ return false; }
|
|
public boolean intersects(double p0, double p1, double p2, double p3){ return false; }
|
|
public double getHeight(){ return 0; }
|
|
public double getMaxX(){ return 0; }
|
|
public double getMaxY(){ return 0; }
|
|
public double getMinX(){ return 0; }
|
|
public double getMinY(){ return 0; }
|
|
public double getWidth(){ return 0; }
|
|
public int hashCode(){ return 0; }
|
|
public static Rectangle2D EMPTY = null;
|
|
}
|