mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
20 lines
677 B
Java
Generated
20 lines
677 B
Java
Generated
// Generated automatically from javafx.scene.image.PixelBuffer for testing purposes
|
|
|
|
package javafx.scene.image;
|
|
|
|
import java.nio.Buffer;
|
|
import javafx.geometry.Rectangle2D;
|
|
import javafx.scene.image.PixelFormat;
|
|
import javafx.util.Callback;
|
|
|
|
public class PixelBuffer<T extends Buffer>
|
|
{
|
|
protected PixelBuffer() {}
|
|
public PixelBuffer(int p0, int p1, T p2, javafx.scene.image.PixelFormat<T> p3){}
|
|
public T getBuffer(){ return null; }
|
|
public int getHeight(){ return 0; }
|
|
public int getWidth(){ return 0; }
|
|
public javafx.scene.image.PixelFormat<T> getPixelFormat(){ return null; }
|
|
public void updateBuffer(Callback<PixelBuffer<T>, Rectangle2D> p0){}
|
|
}
|