jrubyfx 1.2.0-java → 2.0.0-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,23 +21,17 @@ require_relative 'utils'
21
21
  begin
22
22
  if ENV['JFX_DIR']
23
23
  $LOAD_PATH << ENV['JFX_DIR']
24
- else #should we check for 1.7 vs 1.8? oh well, adding extra paths won't hurt anybody (maybe performance loading)
25
- jfx_path = ENV_JAVA["sun.boot.library.path"]
26
- $LOAD_PATH << if jfx_path.include? ":\\" and !jfx_path.include? "/" # can be tricked, but should work fine
27
- #windows
28
- jfx_path.gsub(/\\bin[\\]*$/i, "\\lib")
29
- else
30
- # *nix
31
- jfx_path.gsub(/[\/\\][amdix345678_]+$/, "") # strip i386 or amd64 (including variants). TODO: ARM
24
+ end
25
+
26
+ # add OpenJFX support if follow instruction from https://openjfx.io
27
+ if ENV['JFX_DIR']
28
+ require 'jfxrt.jar'
29
+ elsif ENV['PATH_TO_FX'] # support the OpenJFX installation as in https://openjfx.io/openjfx-docs/#install-javafx as of 15th May 2020
30
+ Dir.glob(File.join(ENV['PATH_TO_FX'],"*.jar")).each do |jar|
31
+ require jar
32
32
  end
33
33
  end
34
34
 
35
- # Java 8 (after ea-b75) and above has JavaFX as part of the normal distib, only require it if we are 7 or below
36
- jre = ENV_JAVA["java.runtime.version"].match %r{^(?<version>(?<major>\d+)\.(?<minor>\d+))\.(?<patch>\d+)(_\d+)?-?(?<release>ea|u\d)?(-?b(?<build>\d+))?}
37
- require 'jfxrt.jar' if ENV['JFX_DIR'] or
38
- jre[:version].to_f < 1.8 or
39
- (jre[:version].to_f == 1.8 and jre[:release] == 'ea' and jre[:build].to_i < 75)
40
-
41
35
  # Java 8 at some point requires explicit toolkit/platform initialization
42
36
  # before any controls can be loaded.
43
37
  JRubyFX.load_fx
@@ -45,8 +39,9 @@ begin
45
39
  # Attempt to load a javafx class
46
40
  Java.javafx.application.Application
47
41
  rescue LoadError, NameError
48
- puts "JavaFX runtime not found. Please install Java 7u6 or newer or set environment variable JFX_DIR to the folder that contains jfxrt.jar "
49
- puts "If you have Java 7u6 or later, this is a bug. Please report to the issue tracker on github. Include your OS version, 32/64bit, and architecture (x86, ARM, PPC, etc)"
42
+ # Advice user too about the OpenJFX support
43
+ puts "JavaFX runtime not found. Please install Java 8 or newer, set environment variable JFX_DIR to the folder that contains jfxrt.jar or set the environment variable PATH_TO_FX that points to the OpenJFX libraries"
44
+ puts "If you have Java 8 or later, this is a bug. Please report to the issue tracker on github. Include your OS version, 32/64bit, and architecture (x86, ARM, PPC, etc)"
50
45
  exit -1
51
46
  end
52
47
 
@@ -74,6 +69,7 @@ LOCAL_NAME_MAP = {
74
69
  :AnimationTimer => "javafx.animation.AnimationTimer",
75
70
  :FadeTransition => "javafx.animation.FadeTransition",
76
71
  :FillTransition => "javafx.animation.FillTransition",
72
+ :Interpolatable => "javafx.animation.Interpolatable",
77
73
  :Interpolator => "javafx.animation.Interpolator",
78
74
  :KeyFrame => "javafx.animation.KeyFrame",
79
75
  :KeyValue => "javafx.animation.KeyValue",
@@ -87,7 +83,123 @@ LOCAL_NAME_MAP = {
87
83
  :Timeline => "javafx.animation.Timeline",
88
84
  :Transition => "javafx.animation.Transition",
89
85
  :TranslateTransition => "javafx.animation.TranslateTransition",
86
+ :Application => "javafx.application.Application",
87
+ :ConditionalFeature => "javafx.application.ConditionalFeature",
88
+ :HostServices => "javafx.application.HostServices",
90
89
  :Platform => "javafx.application.Platform",
90
+ :Preloader => "javafx.application.Preloader",
91
+ :Binding => "javafx.beans.binding.Binding",
92
+ :Bindings => "javafx.beans.binding.Bindings",
93
+ :BooleanBinding => "javafx.beans.binding.BooleanBinding",
94
+ :BooleanExpression => "javafx.beans.binding.BooleanExpression",
95
+ :DoubleBinding => "javafx.beans.binding.DoubleBinding",
96
+ :DoubleExpression => "javafx.beans.binding.DoubleExpression",
97
+ :FloatBinding => "javafx.beans.binding.FloatBinding",
98
+ :FloatExpression => "javafx.beans.binding.FloatExpression",
99
+ :IntegerBinding => "javafx.beans.binding.IntegerBinding",
100
+ :IntegerExpression => "javafx.beans.binding.IntegerExpression",
101
+ :ListBinding => "javafx.beans.binding.ListBinding",
102
+ :ListExpression => "javafx.beans.binding.ListExpression",
103
+ :LongBinding => "javafx.beans.binding.LongBinding",
104
+ :LongExpression => "javafx.beans.binding.LongExpression",
105
+ :MapBinding => "javafx.beans.binding.MapBinding",
106
+ :MapExpression => "javafx.beans.binding.MapExpression",
107
+ :NumberBinding => "javafx.beans.binding.NumberBinding",
108
+ :NumberExpression => "javafx.beans.binding.NumberExpression",
109
+ :NumberExpressionBase => "javafx.beans.binding.NumberExpressionBase",
110
+ :ObjectBinding => "javafx.beans.binding.ObjectBinding",
111
+ :ObjectExpression => "javafx.beans.binding.ObjectExpression",
112
+ :SetBinding => "javafx.beans.binding.SetBinding",
113
+ :SetExpression => "javafx.beans.binding.SetExpression",
114
+ :StringBinding => "javafx.beans.binding.StringBinding",
115
+ :StringExpression => "javafx.beans.binding.StringExpression",
116
+ :When => "javafx.beans.binding.When",
117
+ :DefaultProperty => "javafx.beans.DefaultProperty",
118
+ :InvalidationListener => "javafx.beans.InvalidationListener",
119
+ :NamedArg => "javafx.beans.NamedArg",
120
+ :Observable => "javafx.beans.Observable",
121
+ :WeakInvalidationListener => "javafx.beans.WeakInvalidationListener",
122
+ :WeakListener => "javafx.beans.WeakListener",
123
+ :JavaBeanBooleanProperty => "javafx.beans.property.adapter.JavaBeanBooleanProperty",
124
+ :JavaBeanBooleanPropertyBuilder => "javafx.beans.property.adapter.JavaBeanBooleanPropertyBuilder",
125
+ :JavaBeanDoubleProperty => "javafx.beans.property.adapter.JavaBeanDoubleProperty",
126
+ :JavaBeanDoublePropertyBuilder => "javafx.beans.property.adapter.JavaBeanDoublePropertyBuilder",
127
+ :JavaBeanFloatProperty => "javafx.beans.property.adapter.JavaBeanFloatProperty",
128
+ :JavaBeanFloatPropertyBuilder => "javafx.beans.property.adapter.JavaBeanFloatPropertyBuilder",
129
+ :JavaBeanIntegerProperty => "javafx.beans.property.adapter.JavaBeanIntegerProperty",
130
+ :JavaBeanIntegerPropertyBuilder => "javafx.beans.property.adapter.JavaBeanIntegerPropertyBuilder",
131
+ :JavaBeanLongProperty => "javafx.beans.property.adapter.JavaBeanLongProperty",
132
+ :JavaBeanLongPropertyBuilder => "javafx.beans.property.adapter.JavaBeanLongPropertyBuilder",
133
+ :JavaBeanObjectProperty => "javafx.beans.property.adapter.JavaBeanObjectProperty",
134
+ :JavaBeanObjectPropertyBuilder => "javafx.beans.property.adapter.JavaBeanObjectPropertyBuilder",
135
+ :JavaBeanProperty => "javafx.beans.property.adapter.JavaBeanProperty",
136
+ :JavaBeanStringProperty => "javafx.beans.property.adapter.JavaBeanStringProperty",
137
+ :JavaBeanStringPropertyBuilder => "javafx.beans.property.adapter.JavaBeanStringPropertyBuilder",
138
+ :ReadOnlyJavaBeanBooleanProperty => "javafx.beans.property.adapter.ReadOnlyJavaBeanBooleanProperty",
139
+ :ReadOnlyJavaBeanBooleanPropertyBuilder => "javafx.beans.property.adapter.ReadOnlyJavaBeanBooleanPropertyBuilder",
140
+ :ReadOnlyJavaBeanDoubleProperty => "javafx.beans.property.adapter.ReadOnlyJavaBeanDoubleProperty",
141
+ :ReadOnlyJavaBeanDoublePropertyBuilder => "javafx.beans.property.adapter.ReadOnlyJavaBeanDoublePropertyBuilder",
142
+ :ReadOnlyJavaBeanFloatProperty => "javafx.beans.property.adapter.ReadOnlyJavaBeanFloatProperty",
143
+ :ReadOnlyJavaBeanFloatPropertyBuilder => "javafx.beans.property.adapter.ReadOnlyJavaBeanFloatPropertyBuilder",
144
+ :ReadOnlyJavaBeanIntegerProperty => "javafx.beans.property.adapter.ReadOnlyJavaBeanIntegerProperty",
145
+ :ReadOnlyJavaBeanIntegerPropertyBuilder => "javafx.beans.property.adapter.ReadOnlyJavaBeanIntegerPropertyBuilder",
146
+ :ReadOnlyJavaBeanLongProperty => "javafx.beans.property.adapter.ReadOnlyJavaBeanLongProperty",
147
+ :ReadOnlyJavaBeanLongPropertyBuilder => "javafx.beans.property.adapter.ReadOnlyJavaBeanLongPropertyBuilder",
148
+ :ReadOnlyJavaBeanObjectProperty => "javafx.beans.property.adapter.ReadOnlyJavaBeanObjectProperty",
149
+ :ReadOnlyJavaBeanObjectPropertyBuilder => "javafx.beans.property.adapter.ReadOnlyJavaBeanObjectPropertyBuilder",
150
+ :ReadOnlyJavaBeanProperty => "javafx.beans.property.adapter.ReadOnlyJavaBeanProperty",
151
+ :ReadOnlyJavaBeanStringProperty => "javafx.beans.property.adapter.ReadOnlyJavaBeanStringProperty",
152
+ :ReadOnlyJavaBeanStringPropertyBuilder => "javafx.beans.property.adapter.ReadOnlyJavaBeanStringPropertyBuilder",
153
+ :BooleanProperty => "javafx.beans.property.BooleanProperty",
154
+ :BooleanPropertyBase => "javafx.beans.property.BooleanPropertyBase",
155
+ :DoubleProperty => "javafx.beans.property.DoubleProperty",
156
+ :DoublePropertyBase => "javafx.beans.property.DoublePropertyBase",
157
+ :FloatProperty => "javafx.beans.property.FloatProperty",
158
+ :FloatPropertyBase => "javafx.beans.property.FloatPropertyBase",
159
+ :IntegerProperty => "javafx.beans.property.IntegerProperty",
160
+ :IntegerPropertyBase => "javafx.beans.property.IntegerPropertyBase",
161
+ :ListProperty => "javafx.beans.property.ListProperty",
162
+ :ListPropertyBase => "javafx.beans.property.ListPropertyBase",
163
+ :LongProperty => "javafx.beans.property.LongProperty",
164
+ :LongPropertyBase => "javafx.beans.property.LongPropertyBase",
165
+ :MapProperty => "javafx.beans.property.MapProperty",
166
+ :MapPropertyBase => "javafx.beans.property.MapPropertyBase",
167
+ :ObjectProperty => "javafx.beans.property.ObjectProperty",
168
+ :ObjectPropertyBase => "javafx.beans.property.ObjectPropertyBase",
169
+ :Property => "javafx.beans.property.Property",
170
+ :ReadOnlyBooleanProperty => "javafx.beans.property.ReadOnlyBooleanProperty",
171
+ :ReadOnlyBooleanPropertyBase => "javafx.beans.property.ReadOnlyBooleanPropertyBase",
172
+ :ReadOnlyBooleanWrapper => "javafx.beans.property.ReadOnlyBooleanWrapper",
173
+ :ReadOnlyDoubleProperty => "javafx.beans.property.ReadOnlyDoubleProperty",
174
+ :ReadOnlyDoublePropertyBase => "javafx.beans.property.ReadOnlyDoublePropertyBase",
175
+ :ReadOnlyDoubleWrapper => "javafx.beans.property.ReadOnlyDoubleWrapper",
176
+ :ReadOnlyFloatProperty => "javafx.beans.property.ReadOnlyFloatProperty",
177
+ :ReadOnlyFloatPropertyBase => "javafx.beans.property.ReadOnlyFloatPropertyBase",
178
+ :ReadOnlyFloatWrapper => "javafx.beans.property.ReadOnlyFloatWrapper",
179
+ :ReadOnlyIntegerProperty => "javafx.beans.property.ReadOnlyIntegerProperty",
180
+ :ReadOnlyIntegerPropertyBase => "javafx.beans.property.ReadOnlyIntegerPropertyBase",
181
+ :ReadOnlyIntegerWrapper => "javafx.beans.property.ReadOnlyIntegerWrapper",
182
+ :ReadOnlyListProperty => "javafx.beans.property.ReadOnlyListProperty",
183
+ :ReadOnlyListPropertyBase => "javafx.beans.property.ReadOnlyListPropertyBase",
184
+ :ReadOnlyListWrapper => "javafx.beans.property.ReadOnlyListWrapper",
185
+ :ReadOnlyLongProperty => "javafx.beans.property.ReadOnlyLongProperty",
186
+ :ReadOnlyLongPropertyBase => "javafx.beans.property.ReadOnlyLongPropertyBase",
187
+ :ReadOnlyLongWrapper => "javafx.beans.property.ReadOnlyLongWrapper",
188
+ :ReadOnlyMapProperty => "javafx.beans.property.ReadOnlyMapProperty",
189
+ :ReadOnlyMapPropertyBase => "javafx.beans.property.ReadOnlyMapPropertyBase",
190
+ :ReadOnlyMapWrapper => "javafx.beans.property.ReadOnlyMapWrapper",
191
+ :ReadOnlyObjectProperty => "javafx.beans.property.ReadOnlyObjectProperty",
192
+ :ReadOnlyObjectPropertyBase => "javafx.beans.property.ReadOnlyObjectPropertyBase",
193
+ :ReadOnlyObjectWrapper => "javafx.beans.property.ReadOnlyObjectWrapper",
194
+ :ReadOnlyProperty => "javafx.beans.property.ReadOnlyProperty",
195
+ :ReadOnlySetProperty => "javafx.beans.property.ReadOnlySetProperty",
196
+ :ReadOnlySetPropertyBase => "javafx.beans.property.ReadOnlySetPropertyBase",
197
+ :ReadOnlySetWrapper => "javafx.beans.property.ReadOnlySetWrapper",
198
+ :ReadOnlyStringProperty => "javafx.beans.property.ReadOnlyStringProperty",
199
+ :ReadOnlyStringPropertyBase => "javafx.beans.property.ReadOnlyStringPropertyBase",
200
+ :ReadOnlyStringWrapper => "javafx.beans.property.ReadOnlyStringWrapper",
201
+ :SetProperty => "javafx.beans.property.SetProperty",
202
+ :SetPropertyBase => "javafx.beans.property.SetPropertyBase",
91
203
  :SimpleBooleanProperty => "javafx.beans.property.SimpleBooleanProperty",
92
204
  :SimpleDoubleProperty => "javafx.beans.property.SimpleDoubleProperty",
93
205
  :SimpleFloatProperty => "javafx.beans.property.SimpleFloatProperty",
@@ -98,30 +210,181 @@ LOCAL_NAME_MAP = {
98
210
  :SimpleObjectProperty => "javafx.beans.property.SimpleObjectProperty",
99
211
  :SimpleSetProperty => "javafx.beans.property.SimpleSetProperty",
100
212
  :SimpleStringProperty => "javafx.beans.property.SimpleStringProperty",
213
+ :StringProperty => "javafx.beans.property.StringProperty",
214
+ :StringPropertyBase => "javafx.beans.property.StringPropertyBase",
101
215
  :ChangeListener => "javafx.beans.value.ChangeListener",
216
+ :ObservableBooleanValue => "javafx.beans.value.ObservableBooleanValue",
217
+ :ObservableDoubleValue => "javafx.beans.value.ObservableDoubleValue",
218
+ :ObservableFloatValue => "javafx.beans.value.ObservableFloatValue",
219
+ :ObservableIntegerValue => "javafx.beans.value.ObservableIntegerValue",
220
+ :ObservableListValue => "javafx.beans.value.ObservableListValue",
221
+ :ObservableLongValue => "javafx.beans.value.ObservableLongValue",
222
+ :ObservableMapValue => "javafx.beans.value.ObservableMapValue",
223
+ :ObservableNumberValue => "javafx.beans.value.ObservableNumberValue",
224
+ :ObservableObjectValue => "javafx.beans.value.ObservableObjectValue",
225
+ :ObservableSetValue => "javafx.beans.value.ObservableSetValue",
226
+ :ObservableStringValue => "javafx.beans.value.ObservableStringValue",
227
+ :ObservableValue => "javafx.beans.value.ObservableValue",
228
+ :ObservableValueBase => "javafx.beans.value.ObservableValueBase",
229
+ :WeakChangeListener => "javafx.beans.value.WeakChangeListener",
230
+ :WritableBooleanValue => "javafx.beans.value.WritableBooleanValue",
231
+ :WritableDoubleValue => "javafx.beans.value.WritableDoubleValue",
232
+ :WritableFloatValue => "javafx.beans.value.WritableFloatValue",
233
+ :WritableIntegerValue => "javafx.beans.value.WritableIntegerValue",
234
+ :WritableListValue => "javafx.beans.value.WritableListValue",
235
+ :WritableLongValue => "javafx.beans.value.WritableLongValue",
236
+ :WritableMapValue => "javafx.beans.value.WritableMapValue",
237
+ :WritableNumberValue => "javafx.beans.value.WritableNumberValue",
238
+ :WritableObjectValue => "javafx.beans.value.WritableObjectValue",
239
+ :WritableSetValue => "javafx.beans.value.WritableSetValue",
240
+ :WritableStringValue => "javafx.beans.value.WritableStringValue",
241
+ :WritableValue => "javafx.beans.value.WritableValue",
242
+ :ArrayChangeListener => "javafx.collections.ArrayChangeListener",
102
243
  :FXCollections => "javafx.collections.FXCollections",
103
- :Worker => "javafx.concurrent.Worker",
104
- :Task => "javafx.concurrent.Task",
244
+ :ListChangeListener => "javafx.collections.ListChangeListener",
245
+ :MapChangeListener => "javafx.collections.MapChangeListener",
246
+ :ModifiableObservableListBase => "javafx.collections.ModifiableObservableListBase",
247
+ :ObservableArray => "javafx.collections.ObservableArray",
248
+ :ObservableArrayBase => "javafx.collections.ObservableArrayBase",
249
+ :ObservableFloatArray => "javafx.collections.ObservableFloatArray",
250
+ :ObservableIntegerArray => "javafx.collections.ObservableIntegerArray",
251
+ :ObservableList => "javafx.collections.ObservableList",
252
+ :ObservableListBase => "javafx.collections.ObservableListBase",
253
+ :ObservableMap => "javafx.collections.ObservableMap",
254
+ :ObservableSet => "javafx.collections.ObservableSet",
255
+ :SetChangeListener => "javafx.collections.SetChangeListener",
256
+ :WeakListChangeListener => "javafx.collections.WeakListChangeListener",
257
+ :WeakMapChangeListener => "javafx.collections.WeakMapChangeListener",
258
+ :WeakSetChangeListener => "javafx.collections.WeakSetChangeListener",
259
+ :FilteredList => "javafx.collections.transformation.FilteredList",
260
+ :SortedList => "javafx.collections.transformation.SortedList",
261
+ :TransformationList => "javafx.collections.transformation.TransformationList",
262
+ :ScheduledService => "javafx.concurrent.ScheduledService",
105
263
  :Service => "javafx.concurrent.Service",
106
- :Event => "javafx.event.Event",
264
+ :Task => "javafx.concurrent.Task",
265
+ :Worker => "javafx.concurrent.Worker",
266
+ :WorkerStateEvent => "javafx.concurrent.WorkerStateEvent",
267
+ :CompoundSelector => "javafx.css.CompoundSelector",
268
+ :CssMetaData => "javafx.css.CssMetaData",
269
+ :CssParser => "javafx.css.CssParser",
270
+ :Declaration => "javafx.css.Declaration",
271
+ :FontCssMetaData => "javafx.css.FontCssMetaData",
272
+ :FontFace => "javafx.css.FontFace",
273
+ :Match => "javafx.css.Match",
274
+ :ParsedValue => "javafx.css.ParsedValue",
275
+ :PseudoClass => "javafx.css.PseudoClass",
276
+ :Rule => "javafx.css.Rule",
277
+ :Selector => "javafx.css.Selector",
278
+ :SimpleSelector => "javafx.css.SimpleSelector",
279
+ :SimpleStyleableBooleanProperty => "javafx.css.SimpleStyleableBooleanProperty",
280
+ :SimpleStyleableDoubleProperty => "javafx.css.SimpleStyleableDoubleProperty",
281
+ :SimpleStyleableFloatProperty => "javafx.css.SimpleStyleableFloatProperty",
282
+ :SimpleStyleableIntegerProperty => "javafx.css.SimpleStyleableIntegerProperty",
283
+ :SimpleStyleableLongProperty => "javafx.css.SimpleStyleableLongProperty",
284
+ :SimpleStyleableObjectProperty => "javafx.css.SimpleStyleableObjectProperty",
285
+ :SimpleStyleableStringProperty => "javafx.css.SimpleStyleableStringProperty",
286
+ :Size => "javafx.css.Size",
287
+ :SizeUnits => "javafx.css.SizeUnits",
288
+ :Style => "javafx.css.Style",
289
+ :Styleable => "javafx.css.Styleable",
290
+ :StyleableBooleanProperty => "javafx.css.StyleableBooleanProperty",
291
+ :StyleableDoubleProperty => "javafx.css.StyleableDoubleProperty",
292
+ :StyleableFloatProperty => "javafx.css.StyleableFloatProperty",
293
+ :StyleableIntegerProperty => "javafx.css.StyleableIntegerProperty",
294
+ :StyleableLongProperty => "javafx.css.StyleableLongProperty",
295
+ :StyleableObjectProperty => "javafx.css.StyleableObjectProperty",
296
+ :StyleableProperty => "javafx.css.StyleableProperty",
297
+ :StyleablePropertyFactory => "javafx.css.StyleablePropertyFactory",
298
+ :StyleableStringProperty => "javafx.css.StyleableStringProperty",
299
+ :StyleClass => "javafx.css.StyleClass",
300
+ :StyleConverter => "javafx.css.StyleConverter",
301
+ :StyleOrigin => "javafx.css.StyleOrigin",
302
+ :Stylesheet => "javafx.css.Stylesheet",
303
+ :BooleanConverter => "javafx.css.converter.BooleanConverter",
304
+ :ColorConverter => "javafx.css.converter.ColorConverter",
305
+ :CursorConverter => "javafx.css.converter.CursorConverter",
306
+ :DeriveColorConverter => "javafx.css.converter.DeriveColorConverter",
307
+ :DeriveSizeConverter => "javafx.css.converter.DeriveSizeConverter",
308
+ :DurationConverter => "javafx.css.converter.DurationConverter",
309
+ :EffectConverter => "javafx.css.converter.EffectConverter",
310
+ :EnumConverter => "javafx.css.converter.EnumConverter",
311
+ :FontConverter => "javafx.css.converter.FontConverter",
312
+ :InsetsConverter => "javafx.css.converter.InsetsConverter",
313
+ :LadderConverter => "javafx.css.converter.LadderConverter",
314
+ :PaintConverter => "javafx.css.converter.PaintConverter",
315
+ :ShapeConverter => "javafx.css.converter.ShapeConverter",
316
+ :SizeConverter => "javafx.css.converter.SizeConverter",
317
+ :StopConverter => "javafx.css.converter.StopConverter",
318
+ :URLConverter => "javafx.css.converter.URLConverter",
319
+ :JFXPanel => "javafx.embed.swing.JFXPanel",
320
+ :SwingFXUtils => "javafx.embed.swing.SwingFXUtils",
321
+ :SwingNode => "javafx.embed.swing.SwingNode",
107
322
  :ActionEvent => "javafx.event.ActionEvent",
323
+ :Event => "javafx.event.Event",
324
+ :EventDispatchChain => "javafx.event.EventDispatchChain",
325
+ :EventDispatcher => "javafx.event.EventDispatcher",
108
326
  :EventHandler => "javafx.event.EventHandler",
327
+ :EventTarget => "javafx.event.EventTarget",
328
+ :EventType => "javafx.event.EventType",
329
+ :WeakEventHandler => "javafx.event.WeakEventHandler",
330
+ :FXML => "javafx.fxml.FXML",
331
+ :FXMLLoader => "javafx.fxml.FXMLLoader",
109
332
  :Initializable => "javafx.fxml.Initializable",
333
+ :JavaFXBuilderFactory => "javafx.fxml.JavaFXBuilderFactory",
110
334
  :LoadException => "javafx.fxml.LoadException",
335
+ :LoadListener => "javafx.fxml.LoadListener",
336
+ :BoundingBox => "javafx.geometry.BoundingBox",
337
+ :Bounds => "javafx.geometry.Bounds",
338
+ :Dimension2D => "javafx.geometry.Dimension2D",
111
339
  :HorizontalDirection => "javafx.geometry.HorizontalDirection",
112
340
  :HPos => "javafx.geometry.HPos",
113
341
  :Insets => "javafx.geometry.Insets",
342
+ :NodeOrientation => "javafx.geometry.NodeOrientation",
114
343
  :Orientation => "javafx.geometry.Orientation",
344
+ :Point2D => "javafx.geometry.Point2D",
345
+ :Point3D => "javafx.geometry.Point3D",
115
346
  :Pos => "javafx.geometry.Pos",
116
347
  :Rectangle2D => "javafx.geometry.Rectangle2D",
117
348
  :Side => "javafx.geometry.Side",
118
349
  :VerticalDirection => "javafx.geometry.VerticalDirection",
119
350
  :VPos => "javafx.geometry.VPos",
351
+ :Collation => "javafx.print.Collation",
352
+ :JobSettings => "javafx.print.JobSettings",
353
+ :PageLayout => "javafx.print.PageLayout",
354
+ :PageOrientation => "javafx.print.PageOrientation",
355
+ :PageRange => "javafx.print.PageRange",
356
+ :Paper => "javafx.print.Paper",
357
+ :PaperSource => "javafx.print.PaperSource",
358
+ :PrintColor => "javafx.print.PrintColor",
359
+ :Printer => "javafx.print.Printer",
360
+ :PrinterAttributes => "javafx.print.PrinterAttributes",
361
+ :PrinterJob => "javafx.print.PrinterJob",
362
+ :PrintQuality => "javafx.print.PrintQuality",
363
+ :PrintResolution => "javafx.print.PrintResolution",
364
+ :PrintSides => "javafx.print.PrintSides",
365
+ :AccessibleAction => "javafx.scene.AccessibleAction",
366
+ :AccessibleAttribute => "javafx.scene.AccessibleAttribute",
367
+ :AccessibleRole => "javafx.scene.AccessibleRole",
368
+ :AmbientLight => "javafx.scene.AmbientLight",
369
+ :CacheHint => "javafx.scene.CacheHint",
370
+ :Camera => "javafx.scene.Camera",
371
+ :Cursor => "javafx.scene.Cursor",
372
+ :DepthTest => "javafx.scene.DepthTest",
120
373
  :Group => "javafx.scene.Group",
374
+ :ImageCursor => "javafx.scene.ImageCursor",
375
+ :LightBase => "javafx.scene.LightBase",
121
376
  :Node => "javafx.scene.Node",
377
+ :ParallelCamera => "javafx.scene.ParallelCamera",
122
378
  :Parent => "javafx.scene.Parent",
379
+ :PerspectiveCamera => "javafx.scene.PerspectiveCamera",
380
+ :PointLight => "javafx.scene.PointLight",
123
381
  :Scene => "javafx.scene.Scene",
382
+ :SceneAntialiasing => "javafx.scene.SceneAntialiasing",
383
+ :SnapshotParameters => "javafx.scene.SnapshotParameters",
384
+ :SnapshotResult => "javafx.scene.SnapshotResult",
385
+ :SubScene => "javafx.scene.SubScene",
124
386
  :Canvas => "javafx.scene.canvas.Canvas",
387
+ :GraphicsContext => "javafx.scene.canvas.GraphicsContext",
125
388
  :AreaChart => "javafx.scene.chart.AreaChart",
126
389
  :Axis => "javafx.scene.chart.Axis",
127
390
  :BarChart => "javafx.scene.chart.BarChart",
@@ -137,23 +400,43 @@ LOCAL_NAME_MAP = {
137
400
  :ValueAxis => "javafx.scene.chart.ValueAxis",
138
401
  :XYChart => "javafx.scene.chart.XYChart",
139
402
  :Accordion => "javafx.scene.control.Accordion",
403
+ :Alert => "javafx.scene.control.Alert",
140
404
  :Button => "javafx.scene.control.Button",
405
+ :ButtonBar => "javafx.scene.control.ButtonBar",
406
+ :ButtonBase => "javafx.scene.control.ButtonBase",
407
+ :ButtonType => "javafx.scene.control.ButtonType",
141
408
  :Cell => "javafx.scene.control.Cell",
142
409
  :CheckBox => "javafx.scene.control.CheckBox",
143
410
  :CheckBoxTreeItem => "javafx.scene.control.CheckBoxTreeItem",
144
411
  :CheckMenuItem => "javafx.scene.control.CheckMenuItem",
145
412
  :ChoiceBox => "javafx.scene.control.ChoiceBox",
413
+ :ChoiceDialog => "javafx.scene.control.ChoiceDialog",
146
414
  :ColorPicker => "javafx.scene.control.ColorPicker",
147
415
  :ComboBox => "javafx.scene.control.ComboBox",
416
+ :ComboBoxBase => "javafx.scene.control.ComboBoxBase",
417
+ :ContentDisplay => "javafx.scene.control.ContentDisplay",
148
418
  :ContextMenu => "javafx.scene.control.ContextMenu",
419
+ :Control => "javafx.scene.control.Control",
420
+ :CustomMenuItem => "javafx.scene.control.CustomMenuItem",
421
+ :DateCell => "javafx.scene.control.DateCell",
422
+ :DatePicker => "javafx.scene.control.DatePicker",
423
+ :Dialog => "javafx.scene.control.Dialog",
424
+ :DialogEvent => "javafx.scene.control.DialogEvent",
425
+ :DialogPane => "javafx.scene.control.DialogPane",
426
+ :FocusModel => "javafx.scene.control.FocusModel",
149
427
  :Hyperlink => "javafx.scene.control.Hyperlink",
428
+ :IndexedCell => "javafx.scene.control.IndexedCell",
429
+ :IndexRange => "javafx.scene.control.IndexRange",
150
430
  :Label => "javafx.scene.control.Label",
431
+ :Labeled => "javafx.scene.control.Labeled",
151
432
  :ListCell => "javafx.scene.control.ListCell",
152
433
  :ListView => "javafx.scene.control.ListView",
153
434
  :Menu => "javafx.scene.control.Menu",
154
435
  :MenuBar => "javafx.scene.control.MenuBar",
155
436
  :MenuButton => "javafx.scene.control.MenuButton",
156
437
  :MenuItem => "javafx.scene.control.MenuItem",
438
+ :MultipleSelectionModel => "javafx.scene.control.MultipleSelectionModel",
439
+ :OverrunStyle => "javafx.scene.control.OverrunStyle",
157
440
  :Pagination => "javafx.scene.control.Pagination",
158
441
  :PasswordField => "javafx.scene.control.PasswordField",
159
442
  :PopupControl => "javafx.scene.control.PopupControl",
@@ -161,31 +444,132 @@ LOCAL_NAME_MAP = {
161
444
  :ProgressIndicator => "javafx.scene.control.ProgressIndicator",
162
445
  :RadioButton => "javafx.scene.control.RadioButton",
163
446
  :RadioMenuItem => "javafx.scene.control.RadioMenuItem",
447
+ :ResizeFeaturesBase => "javafx.scene.control.ResizeFeaturesBase",
164
448
  :ScrollBar => "javafx.scene.control.ScrollBar",
165
449
  :ScrollPane => "javafx.scene.control.ScrollPane",
450
+ :ScrollToEvent => "javafx.scene.control.ScrollToEvent",
451
+ :SelectionMode => "javafx.scene.control.SelectionMode",
452
+ :SelectionModel => "javafx.scene.control.SelectionModel",
166
453
  :Separator => "javafx.scene.control.Separator",
167
454
  :SeparatorMenuItem => "javafx.scene.control.SeparatorMenuItem",
455
+ :SingleSelectionModel => "javafx.scene.control.SingleSelectionModel",
456
+ :Skin => "javafx.scene.control.Skin",
457
+ :SkinBase => "javafx.scene.control.SkinBase",
458
+ :Skinnable => "javafx.scene.control.Skinnable",
168
459
  :Slider => "javafx.scene.control.Slider",
460
+ :SortEvent => "javafx.scene.control.SortEvent",
461
+ :Spinner => "javafx.scene.control.Spinner",
462
+ :SpinnerValueFactory => "javafx.scene.control.SpinnerValueFactory",
169
463
  :SplitMenuButton => "javafx.scene.control.SplitMenuButton",
170
464
  :SplitPane => "javafx.scene.control.SplitPane",
171
465
  :Tab => "javafx.scene.control.Tab",
172
- :TableView => "javafx.scene.control.TableView",
173
466
  :TableCell => "javafx.scene.control.TableCell",
174
467
  :TableColumn => "javafx.scene.control.TableColumn",
468
+ :TableColumnBase => "javafx.scene.control.TableColumnBase",
469
+ :TableFocusModel => "javafx.scene.control.TableFocusModel",
470
+ :TablePosition => "javafx.scene.control.TablePosition",
471
+ :TablePositionBase => "javafx.scene.control.TablePositionBase",
472
+ :TableRow => "javafx.scene.control.TableRow",
473
+ :TableSelectionModel => "javafx.scene.control.TableSelectionModel",
474
+ :TableView => "javafx.scene.control.TableView",
175
475
  :TabPane => "javafx.scene.control.TabPane",
176
476
  :TextArea => "javafx.scene.control.TextArea",
177
477
  :TextField => "javafx.scene.control.TextField",
478
+ :TextFormatter => "javafx.scene.control.TextFormatter",
479
+ :TextInputControl => "javafx.scene.control.TextInputControl",
480
+ :TextInputDialog => "javafx.scene.control.TextInputDialog",
178
481
  :TitledPane => "javafx.scene.control.TitledPane",
482
+ :Toggle => "javafx.scene.control.Toggle",
179
483
  :ToggleButton => "javafx.scene.control.ToggleButton",
180
484
  :ToggleGroup => "javafx.scene.control.ToggleGroup",
181
485
  :ToolBar => "javafx.scene.control.ToolBar",
182
486
  :Tooltip => "javafx.scene.control.Tooltip",
183
487
  :TreeCell => "javafx.scene.control.TreeCell",
184
488
  :TreeItem => "javafx.scene.control.TreeItem",
489
+ :TreeSortMode => "javafx.scene.control.TreeSortMode",
490
+ :TreeTableCell => "javafx.scene.control.TreeTableCell",
491
+ :TreeTableColumn => "javafx.scene.control.TreeTableColumn",
492
+ :TreeTablePosition => "javafx.scene.control.TreeTablePosition",
493
+ :TreeTableRow => "javafx.scene.control.TreeTableRow",
494
+ :TreeTableView => "javafx.scene.control.TreeTableView",
185
495
  :TreeView => "javafx.scene.control.TreeView",
186
- :ContentDisplay => "javafx.scene.control.ContentDisplay",
187
- :OverrunStyle => "javafx.scene.control.OverrunStyle",
188
- :SelectionMode => "javafx.scene.control.SelectionMode",
496
+ :CheckBoxListCell => "javafx.scene.control.cell.CheckBoxListCell",
497
+ :CheckBoxTableCell => "javafx.scene.control.cell.CheckBoxTableCell",
498
+ :CheckBoxTreeCell => "javafx.scene.control.cell.CheckBoxTreeCell",
499
+ :CheckBoxTreeTableCell => "javafx.scene.control.cell.CheckBoxTreeTableCell",
500
+ :ChoiceBoxListCell => "javafx.scene.control.cell.ChoiceBoxListCell",
501
+ :ChoiceBoxTableCell => "javafx.scene.control.cell.ChoiceBoxTableCell",
502
+ :ChoiceBoxTreeCell => "javafx.scene.control.cell.ChoiceBoxTreeCell",
503
+ :ChoiceBoxTreeTableCell => "javafx.scene.control.cell.ChoiceBoxTreeTableCell",
504
+ :ComboBoxListCell => "javafx.scene.control.cell.ComboBoxListCell",
505
+ :ComboBoxTableCell => "javafx.scene.control.cell.ComboBoxTableCell",
506
+ :ComboBoxTreeCell => "javafx.scene.control.cell.ComboBoxTreeCell",
507
+ :ComboBoxTreeTableCell => "javafx.scene.control.cell.ComboBoxTreeTableCell",
508
+ :MapValueFactory => "javafx.scene.control.cell.MapValueFactory",
509
+ :ProgressBarTableCell => "javafx.scene.control.cell.ProgressBarTableCell",
510
+ :ProgressBarTreeTableCell => "javafx.scene.control.cell.ProgressBarTreeTableCell",
511
+ :PropertyValueFactory => "javafx.scene.control.cell.PropertyValueFactory",
512
+ :TextFieldListCell => "javafx.scene.control.cell.TextFieldListCell",
513
+ :TextFieldTableCell => "javafx.scene.control.cell.TextFieldTableCell",
514
+ :TextFieldTreeCell => "javafx.scene.control.cell.TextFieldTreeCell",
515
+ :TextFieldTreeTableCell => "javafx.scene.control.cell.TextFieldTreeTableCell",
516
+ :TreeItemPropertyValueFactory => "javafx.scene.control.cell.TreeItemPropertyValueFactory",
517
+ :AccordionSkin => "javafx.scene.control.skin.AccordionSkin",
518
+ :ButtonBarSkin => "javafx.scene.control.skin.ButtonBarSkin",
519
+ :ButtonSkin => "javafx.scene.control.skin.ButtonSkin",
520
+ :CellSkinBase => "javafx.scene.control.skin.CellSkinBase",
521
+ :CheckBoxSkin => "javafx.scene.control.skin.CheckBoxSkin",
522
+ :ChoiceBoxSkin => "javafx.scene.control.skin.ChoiceBoxSkin",
523
+ :ColorPickerSkin => "javafx.scene.control.skin.ColorPickerSkin",
524
+ :ComboBoxBaseSkin => "javafx.scene.control.skin.ComboBoxBaseSkin",
525
+ :ComboBoxListViewSkin => "javafx.scene.control.skin.ComboBoxListViewSkin",
526
+ :ComboBoxPopupControl => "javafx.scene.control.skin.ComboBoxPopupControl",
527
+ :ContextMenuSkin => "javafx.scene.control.skin.ContextMenuSkin",
528
+ :DateCellSkin => "javafx.scene.control.skin.DateCellSkin",
529
+ :DatePickerSkin => "javafx.scene.control.skin.DatePickerSkin",
530
+ :HyperlinkSkin => "javafx.scene.control.skin.HyperlinkSkin",
531
+ :LabeledSkinBase => "javafx.scene.control.skin.LabeledSkinBase",
532
+ :LabelSkin => "javafx.scene.control.skin.LabelSkin",
533
+ :ListCellSkin => "javafx.scene.control.skin.ListCellSkin",
534
+ :ListViewSkin => "javafx.scene.control.skin.ListViewSkin",
535
+ :MenuBarSkin => "javafx.scene.control.skin.MenuBarSkin",
536
+ :MenuButtonSkin => "javafx.scene.control.skin.MenuButtonSkin",
537
+ :MenuButtonSkinBase => "javafx.scene.control.skin.MenuButtonSkinBase",
538
+ :NestedTableColumnHeader => "javafx.scene.control.skin.NestedTableColumnHeader",
539
+ :PaginationSkin => "javafx.scene.control.skin.PaginationSkin",
540
+ :ProgressBarSkin => "javafx.scene.control.skin.ProgressBarSkin",
541
+ :ProgressIndicatorSkin => "javafx.scene.control.skin.ProgressIndicatorSkin",
542
+ :RadioButtonSkin => "javafx.scene.control.skin.RadioButtonSkin",
543
+ :ScrollBarSkin => "javafx.scene.control.skin.ScrollBarSkin",
544
+ :ScrollPaneSkin => "javafx.scene.control.skin.ScrollPaneSkin",
545
+ :SeparatorSkin => "javafx.scene.control.skin.SeparatorSkin",
546
+ :SliderSkin => "javafx.scene.control.skin.SliderSkin",
547
+ :SpinnerSkin => "javafx.scene.control.skin.SpinnerSkin",
548
+ :SplitMenuButtonSkin => "javafx.scene.control.skin.SplitMenuButtonSkin",
549
+ :SplitPaneSkin => "javafx.scene.control.skin.SplitPaneSkin",
550
+ :TableCellSkin => "javafx.scene.control.skin.TableCellSkin",
551
+ :TableCellSkinBase => "javafx.scene.control.skin.TableCellSkinBase",
552
+ :TableColumnHeader => "javafx.scene.control.skin.TableColumnHeader",
553
+ :TableHeaderRow => "javafx.scene.control.skin.TableHeaderRow",
554
+ :TableRowSkin => "javafx.scene.control.skin.TableRowSkin",
555
+ :TableRowSkinBase => "javafx.scene.control.skin.TableRowSkinBase",
556
+ :TableViewSkin => "javafx.scene.control.skin.TableViewSkin",
557
+ :TableViewSkinBase => "javafx.scene.control.skin.TableViewSkinBase",
558
+ :TabPaneSkin => "javafx.scene.control.skin.TabPaneSkin",
559
+ :TextAreaSkin => "javafx.scene.control.skin.TextAreaSkin",
560
+ :TextFieldSkin => "javafx.scene.control.skin.TextFieldSkin",
561
+ :TextInputControlSkin => "javafx.scene.control.skin.TextInputControlSkin",
562
+ :TitledPaneSkin => "javafx.scene.control.skin.TitledPaneSkin",
563
+ :ToggleButtonSkin => "javafx.scene.control.skin.ToggleButtonSkin",
564
+ :ToolBarSkin => "javafx.scene.control.skin.ToolBarSkin",
565
+ :TooltipSkin => "javafx.scene.control.skin.TooltipSkin",
566
+ :TreeCellSkin => "javafx.scene.control.skin.TreeCellSkin",
567
+ :TreeTableCellSkin => "javafx.scene.control.skin.TreeTableCellSkin",
568
+ :TreeTableRowSkin => "javafx.scene.control.skin.TreeTableRowSkin",
569
+ :TreeTableViewSkin => "javafx.scene.control.skin.TreeTableViewSkin",
570
+ :TreeViewSkin => "javafx.scene.control.skin.TreeViewSkin",
571
+ :VirtualContainerBase => "javafx.scene.control.skin.VirtualContainerBase",
572
+ :VirtualFlow => "javafx.scene.control.skin.VirtualFlow",
189
573
  :Blend => "javafx.scene.effect.Blend",
190
574
  :BlendMode => "javafx.scene.effect.BlendMode",
191
575
  :Bloom => "javafx.scene.effect.Bloom",
@@ -195,10 +579,13 @@ LOCAL_NAME_MAP = {
195
579
  :ColorInput => "javafx.scene.effect.ColorInput",
196
580
  :DisplacementMap => "javafx.scene.effect.DisplacementMap",
197
581
  :DropShadow => "javafx.scene.effect.DropShadow",
582
+ :Effect => "javafx.scene.effect.Effect",
583
+ :FloatMap => "javafx.scene.effect.FloatMap",
198
584
  :GaussianBlur => "javafx.scene.effect.GaussianBlur",
199
585
  :Glow => "javafx.scene.effect.Glow",
200
586
  :ImageInput => "javafx.scene.effect.ImageInput",
201
587
  :InnerShadow => "javafx.scene.effect.InnerShadow",
588
+ :Light => "javafx.scene.effect.Light",
202
589
  :Lighting => "javafx.scene.effect.Lighting",
203
590
  :MotionBlur => "javafx.scene.effect.MotionBlur",
204
591
  :PerspectiveTransform => "javafx.scene.effect.PerspectiveTransform",
@@ -207,70 +594,111 @@ LOCAL_NAME_MAP = {
207
594
  :Shadow => "javafx.scene.effect.Shadow",
208
595
  :Image => "javafx.scene.image.Image",
209
596
  :ImageView => "javafx.scene.image.ImageView",
597
+ :PixelFormat => "javafx.scene.image.PixelFormat",
210
598
  :PixelReader => "javafx.scene.image.PixelReader",
211
599
  :PixelWriter => "javafx.scene.image.PixelWriter",
600
+ :WritableImage => "javafx.scene.image.WritableImage",
601
+ :WritablePixelFormat => "javafx.scene.image.WritablePixelFormat",
212
602
  :Clipboard => "javafx.scene.input.Clipboard",
213
603
  :ClipboardContent => "javafx.scene.input.ClipboardContent",
214
604
  :ContextMenuEvent => "javafx.scene.input.ContextMenuEvent",
605
+ :DataFormat => "javafx.scene.input.DataFormat",
606
+ :Dragboard => "javafx.scene.input.Dragboard",
215
607
  :DragEvent => "javafx.scene.input.DragEvent",
216
608
  :GestureEvent => "javafx.scene.input.GestureEvent",
217
609
  :InputEvent => "javafx.scene.input.InputEvent",
218
610
  :InputMethodEvent => "javafx.scene.input.InputMethodEvent",
611
+ :InputMethodHighlight => "javafx.scene.input.InputMethodHighlight",
612
+ :InputMethodRequests => "javafx.scene.input.InputMethodRequests",
613
+ :InputMethodTextRun => "javafx.scene.input.InputMethodTextRun",
614
+ :KeyCharacterCombination => "javafx.scene.input.KeyCharacterCombination",
219
615
  :KeyCode => "javafx.scene.input.KeyCode",
616
+ :KeyCodeCombination => "javafx.scene.input.KeyCodeCombination",
617
+ :KeyCombination => "javafx.scene.input.KeyCombination",
220
618
  :KeyEvent => "javafx.scene.input.KeyEvent",
221
619
  :Mnemonic => "javafx.scene.input.Mnemonic",
222
620
  :MouseButton => "javafx.scene.input.MouseButton",
223
621
  :MouseDragEvent => "javafx.scene.input.MouseDragEvent",
224
622
  :MouseEvent => "javafx.scene.input.MouseEvent",
623
+ :PickResult => "javafx.scene.input.PickResult",
225
624
  :RotateEvent => "javafx.scene.input.RotateEvent",
226
625
  :ScrollEvent => "javafx.scene.input.ScrollEvent",
227
626
  :SwipeEvent => "javafx.scene.input.SwipeEvent",
228
627
  :TouchEvent => "javafx.scene.input.TouchEvent",
628
+ :TouchPoint => "javafx.scene.input.TouchPoint",
229
629
  :TransferMode => "javafx.scene.input.TransferMode",
230
630
  :ZoomEvent => "javafx.scene.input.ZoomEvent",
231
631
  :AnchorPane => "javafx.scene.layout.AnchorPane",
632
+ :Background => "javafx.scene.layout.Background",
633
+ :BackgroundFill => "javafx.scene.layout.BackgroundFill",
634
+ :BackgroundImage => "javafx.scene.layout.BackgroundImage",
635
+ :BackgroundPosition => "javafx.scene.layout.BackgroundPosition",
636
+ :BackgroundRepeat => "javafx.scene.layout.BackgroundRepeat",
637
+ :BackgroundSize => "javafx.scene.layout.BackgroundSize",
638
+ :Border => "javafx.scene.layout.Border",
639
+ :BorderImage => "javafx.scene.layout.BorderImage",
232
640
  :BorderPane => "javafx.scene.layout.BorderPane",
641
+ :BorderRepeat => "javafx.scene.layout.BorderRepeat",
642
+ :BorderStroke => "javafx.scene.layout.BorderStroke",
643
+ :BorderStrokeStyle => "javafx.scene.layout.BorderStrokeStyle",
644
+ :BorderWidths => "javafx.scene.layout.BorderWidths",
233
645
  :ColumnConstraints => "javafx.scene.layout.ColumnConstraints",
646
+ :ConstraintsBase => "javafx.scene.layout.ConstraintsBase",
647
+ :CornerRadii => "javafx.scene.layout.CornerRadii",
234
648
  :FlowPane => "javafx.scene.layout.FlowPane",
235
649
  :GridPane => "javafx.scene.layout.GridPane",
236
650
  :HBox => "javafx.scene.layout.HBox",
237
651
  :Pane => "javafx.scene.layout.Pane",
238
652
  :Priority => "javafx.scene.layout.Priority",
653
+ :Region => "javafx.scene.layout.Region",
239
654
  :RowConstraints => "javafx.scene.layout.RowConstraints",
240
655
  :StackPane => "javafx.scene.layout.StackPane",
241
656
  :TilePane => "javafx.scene.layout.TilePane",
242
657
  :VBox => "javafx.scene.layout.VBox",
243
658
  :AudioClip => "javafx.scene.media.AudioClip",
244
659
  :AudioEqualizer => "javafx.scene.media.AudioEqualizer",
660
+ :AudioSpectrumListener => "javafx.scene.media.AudioSpectrumListener",
245
661
  :AudioTrack => "javafx.scene.media.AudioTrack",
246
662
  :EqualizerBand => "javafx.scene.media.EqualizerBand",
247
663
  :Media => "javafx.scene.media.Media",
248
- :MediaException => "javafx.scene.media.MediaException",
249
664
  :MediaErrorEvent => "javafx.scene.media.MediaErrorEvent",
665
+ :MediaException => "javafx.scene.media.MediaException",
250
666
  :MediaMarkerEvent => "javafx.scene.media.MediaMarkerEvent",
251
667
  :MediaPlayer => "javafx.scene.media.MediaPlayer",
252
668
  :MediaView => "javafx.scene.media.MediaView",
669
+ :SubtitleTrack => "javafx.scene.media.SubtitleTrack",
670
+ :Track => "javafx.scene.media.Track",
253
671
  :VideoTrack => "javafx.scene.media.VideoTrack",
254
672
  :Color => "javafx.scene.paint.Color",
255
673
  :CycleMethod => "javafx.scene.paint.CycleMethod",
256
674
  :ImagePattern => "javafx.scene.paint.ImagePattern",
257
675
  :LinearGradient => "javafx.scene.paint.LinearGradient",
676
+ :Material => "javafx.scene.paint.Material",
258
677
  :Paint => "javafx.scene.paint.Paint",
678
+ :PhongMaterial => "javafx.scene.paint.PhongMaterial",
259
679
  :RadialGradient => "javafx.scene.paint.RadialGradient",
260
680
  :Stop => "javafx.scene.paint.Stop",
681
+ :Robot => "javafx.scene.robot.Robot",
261
682
  :Arc => "javafx.scene.shape.Arc",
262
683
  :ArcTo => "javafx.scene.shape.ArcTo",
263
684
  :ArcType => "javafx.scene.shape.ArcType",
685
+ :Box => "javafx.scene.shape.Box",
264
686
  :Circle => "javafx.scene.shape.Circle",
265
687
  :ClosePath => "javafx.scene.shape.ClosePath",
266
688
  :CubicCurve => "javafx.scene.shape.CubicCurve",
267
689
  :CubicCurveTo => "javafx.scene.shape.CubicCurveTo",
690
+ :CullFace => "javafx.scene.shape.CullFace",
691
+ :Cylinder => "javafx.scene.shape.Cylinder",
692
+ :DrawMode => "javafx.scene.shape.DrawMode",
268
693
  :Ellipse => "javafx.scene.shape.Ellipse",
269
694
  :FillRule => "javafx.scene.shape.FillRule",
270
695
  :HLineTo => "javafx.scene.shape.HLineTo",
271
696
  :Line => "javafx.scene.shape.Line",
272
697
  :LineTo => "javafx.scene.shape.LineTo",
698
+ :Mesh => "javafx.scene.shape.Mesh",
699
+ :MeshView => "javafx.scene.shape.MeshView",
273
700
  :MoveTo => "javafx.scene.shape.MoveTo",
701
+ :ObservableFaceArray => "javafx.scene.shape.ObservableFaceArray",
274
702
  :Path => "javafx.scene.shape.Path",
275
703
  :PathElement => "javafx.scene.shape.PathElement",
276
704
  :Polygon => "javafx.scene.shape.Polygon",
@@ -279,25 +707,42 @@ LOCAL_NAME_MAP = {
279
707
  :QuadCurveTo => "javafx.scene.shape.QuadCurveTo",
280
708
  :Rectangle => "javafx.scene.shape.Rectangle",
281
709
  :Shape => "javafx.scene.shape.Shape",
710
+ :Shape3D => "javafx.scene.shape.Shape3D",
711
+ :Sphere => "javafx.scene.shape.Sphere",
282
712
  :StrokeLineCap => "javafx.scene.shape.StrokeLineCap",
283
713
  :StrokeLineJoin => "javafx.scene.shape.StrokeLineJoin",
284
714
  :StrokeType => "javafx.scene.shape.StrokeType",
285
715
  :SVGPath => "javafx.scene.shape.SVGPath",
716
+ :TriangleMesh => "javafx.scene.shape.TriangleMesh",
717
+ :VertexFormat => "javafx.scene.shape.VertexFormat",
286
718
  :VLineTo => "javafx.scene.shape.VLineTo",
287
719
  :Font => "javafx.scene.text.Font",
288
720
  :FontPosture => "javafx.scene.text.FontPosture",
289
721
  :FontSmoothingType => "javafx.scene.text.FontSmoothingType",
290
722
  :FontWeight => "javafx.scene.text.FontWeight",
723
+ :HitInfo => "javafx.scene.text.HitInfo",
291
724
  :Text => "javafx.scene.text.Text",
292
725
  :TextAlignment => "javafx.scene.text.TextAlignment",
293
726
  :TextBoundsType => "javafx.scene.text.TextBoundsType",
727
+ :TextFlow => "javafx.scene.text.TextFlow",
294
728
  :Affine => "javafx.scene.transform.Affine",
729
+ :MatrixType => "javafx.scene.transform.MatrixType",
730
+ :NonInvertibleTransformException => "javafx.scene.transform.NonInvertibleTransformException",
295
731
  :Rotate => "javafx.scene.transform.Rotate",
296
732
  :Scale => "javafx.scene.transform.Scale",
297
733
  :Shear => "javafx.scene.transform.Shear",
734
+ :Transform => "javafx.scene.transform.Transform",
735
+ :TransformChangedEvent => "javafx.scene.transform.TransformChangedEvent",
298
736
  :Translate => "javafx.scene.transform.Translate",
299
- :WebView => "javafx.scene.web.WebView",
300
737
  :HTMLEditor => "javafx.scene.web.HTMLEditor",
738
+ :HTMLEditorSkin => "javafx.scene.web.HTMLEditorSkin",
739
+ :PopupFeatures => "javafx.scene.web.PopupFeatures",
740
+ :PromptData => "javafx.scene.web.PromptData",
741
+ :WebEngine => "javafx.scene.web.WebEngine",
742
+ :WebErrorEvent => "javafx.scene.web.WebErrorEvent",
743
+ :WebEvent => "javafx.scene.web.WebEvent",
744
+ :WebHistory => "javafx.scene.web.WebHistory",
745
+ :WebView => "javafx.scene.web.WebView",
301
746
  :DirectoryChooser => "javafx.stage.DirectoryChooser",
302
747
  :FileChooser => "javafx.stage.FileChooser",
303
748
  :Modality => "javafx.stage.Modality",
@@ -308,7 +753,34 @@ LOCAL_NAME_MAP = {
308
753
  :StageStyle => "javafx.stage.StageStyle",
309
754
  :Window => "javafx.stage.Window",
310
755
  :WindowEvent => "javafx.stage.WindowEvent",
311
- :Duration => "javafx.util.Duration"
756
+ :Builder => "javafx.util.Builder",
757
+ :BuilderFactory => "javafx.util.BuilderFactory",
758
+ :Callback => "javafx.util.Callback",
759
+ :Duration => "javafx.util.Duration",
760
+ :FXPermission => "javafx.util.FXPermission",
761
+ :Pair => "javafx.util.Pair",
762
+ :StringConverter => "javafx.util.StringConverter",
763
+ :BigDecimalStringConverter => "javafx.util.converter.BigDecimalStringConverter",
764
+ :BigIntegerStringConverter => "javafx.util.converter.BigIntegerStringConverter",
765
+ :BooleanStringConverter => "javafx.util.converter.BooleanStringConverter",
766
+ :ByteStringConverter => "javafx.util.converter.ByteStringConverter",
767
+ :CharacterStringConverter => "javafx.util.converter.CharacterStringConverter",
768
+ :CurrencyStringConverter => "javafx.util.converter.CurrencyStringConverter",
769
+ :DateStringConverter => "javafx.util.converter.DateStringConverter",
770
+ :DateTimeStringConverter => "javafx.util.converter.DateTimeStringConverter",
771
+ :DefaultStringConverter => "javafx.util.converter.DefaultStringConverter",
772
+ :DoubleStringConverter => "javafx.util.converter.DoubleStringConverter",
773
+ :FloatStringConverter => "javafx.util.converter.FloatStringConverter",
774
+ :FormatStringConverter => "javafx.util.converter.FormatStringConverter",
775
+ :IntegerStringConverter => "javafx.util.converter.IntegerStringConverter",
776
+ :LocalDateStringConverter => "javafx.util.converter.LocalDateStringConverter",
777
+ :LocalDateTimeStringConverter => "javafx.util.converter.LocalDateTimeStringConverter",
778
+ :LocalTimeStringConverter => "javafx.util.converter.LocalTimeStringConverter",
779
+ :LongStringConverter => "javafx.util.converter.LongStringConverter",
780
+ :NumberStringConverter => "javafx.util.converter.NumberStringConverter",
781
+ :PercentageStringConverter => "javafx.util.converter.PercentageStringConverter",
782
+ :ShortStringConverter => "javafx.util.converter.ShortStringConverter",
783
+ :TimeStringConverter => "javafx.util.converter.TimeStringConverter"
312
784
  }
313
785
  java_import 'java.lang.Void'
314
786
  end