mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
13 lines
366 B
Java
13 lines
366 B
Java
import javafx.event.ActionEvent;
|
|
import javafx.event.Event;
|
|
|
|
public class HighlightAmbiguous {
|
|
public void onArgType(ActionEvent e) {}
|
|
public void onArgType(Event e) {}
|
|
public void onNoArg(ActionEvent e) {}
|
|
public void onNoArg() {}
|
|
public void onNotEvent(Event e) {}
|
|
public void onNotEvent(String notEvent) {}
|
|
public void onNotEvent(int notEvent) {}
|
|
}
|