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

14 lines
404 B
Java
Generated

// Generated automatically from javafx.collections.ObservableSet for testing purposes
package javafx.collections;
import java.util.Set;
import javafx.beans.Observable;
import javafx.collections.SetChangeListener;
public interface ObservableSet<E> extends Observable, java.util.Set<E>
{
void addListener(SetChangeListener<? super E> p0);
void removeListener(SetChangeListener<? super E> p0);
}