Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testcases/org.eclipse.fx.testcases.fxgraph/src/org/eclipse/fx/testcases/fxgraph/ReadOnlyMap.fxgraph')
-rwxr-xr-xtestcases/org.eclipse.fx.testcases.fxgraph/src/org/eclipse/fx/testcases/fxgraph/ReadOnlyMap.fxgraph19
1 files changed, 19 insertions, 0 deletions
diff --git a/testcases/org.eclipse.fx.testcases.fxgraph/src/org/eclipse/fx/testcases/fxgraph/ReadOnlyMap.fxgraph b/testcases/org.eclipse.fx.testcases.fxgraph/src/org/eclipse/fx/testcases/fxgraph/ReadOnlyMap.fxgraph
new file mode 100755
index 000000000..b1ba802d2
--- /dev/null
+++ b/testcases/org.eclipse.fx.testcases.fxgraph/src/org/eclipse/fx/testcases/fxgraph/ReadOnlyMap.fxgraph
@@ -0,0 +1,19 @@
+package org.eclipse.fx.testcases.fxgraph
+
+import javafx.scene.layout.*
+import javafx.scene.control.*
+import javafx.scene.paint.*
+
+component ReadOnlyMap {
+ Button {
+ properties : {
+ foo : Color {
+ red : 0.1,
+ green : 0.1,
+ blue : 0.2
+ },
+ bar : 456,
+ test : "Hello"
+ }
+ }
+} \ No newline at end of file

Back to the top