Files
openide/plugins/javaFX/testData/inspections/eventHandler/highlightHalfRaw.fxml

10 lines
938 B
XML

<?import javafx.scene.control.*?>
<?import javafx.scene.layout.VBox?>
<VBox xmlns:fx="http://javafx.com/fxml" fx:controller="HighlightHalfRaw">
<TableView fx:id="positive"
onSort="#sortPositive"
onScrollToColumn="#scrollPositive"/>
<TableView fx:id="negative"
onSort=<warning descr="Incompatible generic parameter of event handler argument: javafx.scene.control.SortEvent<javafx.scene.control.TableColumn> is not assignable from javafx.scene.control.SortEvent<javafx.scene.control.TableView<javafx.util.Pair>>">"#sortNegative"</warning>
onScrollToColumn=<warning descr="Incompatible generic parameter of event handler argument: javafx.scene.control.ScrollToEvent<javafx.scene.control.TableColumn<java.util.Map.Entry,?>> is not assignable from javafx.scene.control.ScrollToEvent<javafx.scene.control.TableColumn<javafx.util.Pair,?>>">"#scrollNegative"</warning>/>
</VBox>