mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
javafx: create method according to target class lang (IDEA-103367)
(cherry picked from commit a229a8bcba0a5a8630daf4933ff48061f73106ea)
This commit is contained in:
@@ -0,0 +1 @@
|
||||
public class CreateControllerMethodInGroovy {}
|
||||
@@ -0,0 +1,5 @@
|
||||
public class CreateControllerMethodInGroovy {
|
||||
public void bar(ActionEvent actionEvent) {
|
||||
//To change body of created methods use File | Settings | File Templates.
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
<?import javafx.scene.layout.GridPane?>
|
||||
<?import javafx.scene.control.Button?>
|
||||
<GridPane xmlns:fx="http://javafx.com/fxml" fx:controller="CreateControllerMethodInGroovy">
|
||||
<Button onAction="#b<caret>ar"/>
|
||||
</GridPane>
|
||||
Reference in New Issue
Block a user