forked from JetBrains/intellij-community
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
javafx: variables resolve (IDEA-100318)
- Loading branch information
Showing
7 changed files
with
58 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
plugins/javaFX/testData/completion/variableCompletion.fxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?import javafx.scene.layout.GridPane?> | ||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.control.Tooltip?> | ||
<GridPane fx:controller="sample.Controller" xmlns:fx="http://javafx.com/fxml"> | ||
<fx:define> | ||
<Tooltip text="tooltip" fx:id="t"/> | ||
</fx:define> | ||
|
||
<Button onAction="#sayHello" text="Hello" fx:id="b1" tooltip="$<caret>" /> | ||
</GridPane> |
10 changes: 10 additions & 0 deletions
10
plugins/javaFX/testData/completion/variableCompletion_after.fxml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?import javafx.scene.layout.GridPane?> | ||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.control.Tooltip?> | ||
<GridPane fx:controller="sample.Controller" xmlns:fx="http://javafx.com/fxml"> | ||
<fx:define> | ||
<Tooltip text="tooltip" fx:id="t"/> | ||
</fx:define> | ||
|
||
<Button onAction="#sayHello" text="Hello" fx:id="b1" tooltip="$t" /> | ||
</GridPane> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?import javafx.scene.layout.GridPane?> | ||
<?import javafx.scene.control.Button?> | ||
<?import javafx.scene.control.Tooltip?> | ||
<GridPane xmlns:fx="http://javafx.com/fxml"> | ||
<fx:define> | ||
<Tooltip text="tooltip" fx:id="mytt"/> | ||
</fx:define> | ||
|
||
<Button text="Hello" fx:id="b1" tooltip="$mytt" /> | ||
</GridPane> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters