mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
8 lines
491 B
XML
8 lines
491 B
XML
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<HBox xmlns:fx="http://javafx.com/fxml" fx:controller="HighlightAmbiguous">
|
|
<Button text="ArgType" onAction=<warning descr="Ambiguous event handler name: more than one matching method found">"#onArgType"</warning>/>
|
|
<Button text="NoArg" onAction=<warning descr="Ambiguous event handler name: more than one matching method found">"#onNoArg"</warning>/>
|
|
<Button text="NotEvent" onAction="#onNotEvent"/>
|
|
</HBox>
|