Files
openide/plugins/javaFX/testData/highlighting/boxedConstantValue.fxml
Peter Gromov 6d71b92a62 make synthetic enum valueOf/values methods part of PsiClass#getMethods
because all other synthetic methods from records and plugins are also there
inspired by IDEA-CR-57031

GitOrigin-RevId: 9a8b345adaded83fe13980a28db5d9f9acc7450d
2020-01-21 06:38:24 +00:00

24 lines
864 B
XML

<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.control.Control?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.control.Button?>
<?import java.lang.String?>
<?import java.lang.Double?>
<?import java.lang.System?>
<?import java.io.File?>
<GridPane xmlns:fx="http://javafx.com/fxml">
<Button>
<maxWidth>
<Double fx:constant="POSITIVE_INFINITY"/>
</maxWidth>
<minWidth>
<Double fx:constant=<error descr="Constant 'UNKNOWN_CONSTANT' is not found">"<error descr="Wrong attribute value">UNKNOWN_CONSTANT</error>"</error>/>
</minWidth>
</Button>
<padding>
<<error descr="Unable to coerce java.lang.Class to javafx.geometry.Insets">Double</error> fx:constant="TYPE"/>
</padding>
<alignment>
<Double fx:constant="SIZE"/>
</alignment>
</GridPane>