mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
20 lines
666 B
Java
Generated
20 lines
666 B
Java
Generated
// Generated automatically from javafx.scene.web.WebEvent for testing purposes
|
|
|
|
package javafx.scene.web;
|
|
|
|
import javafx.event.Event;
|
|
import javafx.event.EventType;
|
|
|
|
public class WebEvent<T> extends Event
|
|
{
|
|
protected WebEvent() {}
|
|
public String toString(){ return null; }
|
|
public T getData(){ return null; }
|
|
public WebEvent(Object p0, EventType<WebEvent> p1, T p2){}
|
|
public static EventType<WebEvent> ALERT = null;
|
|
public static EventType<WebEvent> ANY = null;
|
|
public static EventType<WebEvent> RESIZED = null;
|
|
public static EventType<WebEvent> STATUS_CHANGED = null;
|
|
public static EventType<WebEvent> VISIBILITY_CHANGED = null;
|
|
}
|