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

14 lines
352 B
Java
Generated

// Generated automatically from javafx.event.EventDispatchChain for testing purposes
package javafx.event;
import javafx.event.Event;
import javafx.event.EventDispatcher;
public interface EventDispatchChain
{
Event dispatchEvent(Event p0);
EventDispatchChain append(EventDispatcher p0);
EventDispatchChain prepend(EventDispatcher p0);
}