mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
24 lines
775 B
Java
Generated
24 lines
775 B
Java
Generated
// Generated automatically from javafx.scene.SnapshotParameters for testing purposes
|
|
|
|
package javafx.scene;
|
|
|
|
import javafx.geometry.Rectangle2D;
|
|
import javafx.scene.Camera;
|
|
import javafx.scene.paint.Paint;
|
|
import javafx.scene.transform.Transform;
|
|
|
|
public class SnapshotParameters
|
|
{
|
|
public Camera getCamera(){ return null; }
|
|
public Paint getFill(){ return null; }
|
|
public Rectangle2D getViewport(){ return null; }
|
|
public SnapshotParameters(){}
|
|
public Transform getTransform(){ return null; }
|
|
public boolean isDepthBuffer(){ return false; }
|
|
public void setCamera(Camera p0){}
|
|
public void setDepthBuffer(boolean p0){}
|
|
public void setFill(Paint p0){}
|
|
public void setTransform(Transform p0){}
|
|
public void setViewport(Rectangle2D p0){}
|
|
}
|