mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 21:30:56 +07:00
9 lines
264 B
Java
9 lines
264 B
Java
import javafx.event.ActionEvent;
|
|
import javafx.event.Event;
|
|
|
|
public class HighlightNonVoid {
|
|
public String onSameArgNotVoid(ActionEvent e) {return "";}
|
|
public Boolean onSuperArgNotVoid(Event e) {return false;}
|
|
public int onNoArgNotVoid() {return 1;}
|
|
}
|