jrubyfx 1.0.0-java → 1.1.0-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,6 +21,7 @@ module JRubyFX
21
21
  # access to the DSL. JRubyFX::Application and JRubyFX::Controller include it already.
22
22
  module DSL
23
23
  include JRubyFX
24
+ include JRubyFX::FXImports
24
25
 
25
26
  # Contains methods to be defined inside all classes that include JRubyFX
26
27
  module ClassUtils
@@ -49,6 +50,7 @@ module JRubyFX
49
50
  # When a class includes JRubyFX, extend (add to the metaclass) ClassUtils
50
51
  def self.included(mod)
51
52
  mod.extend(JRubyFX::DSL::ClassUtils)
53
+ mod.extend(JRubyFX::FXImports)
52
54
  end
53
55
 
54
56
  #--
@@ -77,13 +79,24 @@ module JRubyFX
77
79
  # container. This is useful for specifying clipping regions in particular.
78
80
  #
79
81
  def method_missing(name, *args, &block)
80
- clazz = NAME_TO_CLASSES[name.to_s.gsub(/!$/, '')]
81
-
82
- if caller[0] == caller[2]
83
- raise "Whoa! method_missing caught infinite loop. Trying to run #{name}(#{args.inspect}) failed. Method not found."
82
+ fixed_name = name.to_s.gsub(/!$/, '')
83
+ clazz = NAME_TO_CLASSES[fixed_name]
84
+ unless clazz
85
+ clazz = NAME_TO_CLASS_NAME[fixed_name]
86
+ clazz = (NAME_TO_CLASSES[fixed_name] = clazz.constantize_by) if clazz
84
87
  end
85
88
 
86
- super unless clazz
89
+ unless clazz
90
+ @supers = {} unless @supers
91
+ @supers[name] = 0 unless @supers.has_key?(name)
92
+ @supers[name] += 1
93
+ if @supers[name] > 3
94
+ raise "Whoa! method_missing caught infinite loop. Trying to run #{name}(#{args.inspect}) failed. Method not found."
95
+ end
96
+ res = super
97
+ @supers[name] -= 1
98
+ return res
99
+ end
87
100
 
88
101
  build(clazz, *args, &block)
89
102
  end
@@ -100,7 +113,8 @@ module JRubyFX
100
113
  :methods =>{},
101
114
  :all => []
102
115
  }
103
- JRubyFX::DSL::NAME_TO_CLASSES.each do |n,cls|
116
+ JRubyFX::DSL::NAME_TO_CLASS_NAME.each do |n,clsz|
117
+ cls = eval(clsz) # TODO: use constantize
104
118
  cls.java_class.java_instance_methods.each do |method|
105
119
  args = method.argument_types.find_all(&:enum?).tap {|i| mod_list[:all] << i }
106
120
 
@@ -126,7 +140,8 @@ module JRubyFX
126
140
  end
127
141
  # cleanout and search for colors. TODO: combind with previous
128
142
  mod_list = {:methods =>{}, :all => []}
129
- JRubyFX::DSL::NAME_TO_CLASSES.each do |n,cls|
143
+ JRubyFX::DSL::NAME_TO_CLASS_NAME.each do |n,clsz|
144
+ cls = eval(clsz) # TODO: use constantize
130
145
  cls.java_class.java_instance_methods.each do |method|
131
146
  args = method.argument_types.find_all{|i| JavaUtilities.get_proxy_class(i).ancestors.include? Java::javafx.scene.paint.Paint}
132
147
 
@@ -144,6 +159,25 @@ module JRubyFX
144
159
  write_color_method_converter child_catcher, clz, method
145
160
  end
146
161
 
162
+ # cleanout and search for events. TODO: combind with previous
163
+ mod_list = {:methods =>{}}
164
+ JRubyFX::DSL::NAME_TO_CLASS_NAME.each do |n,clsz|
165
+ cls = eval(clsz) # TODO: use constantize
166
+ cls.java_class.java_instance_methods.each do |method|
167
+ # one and only, must be a setter style
168
+ if method.name.start_with? "setOn" and !(cls.ancestors[1].public_instance_methods.include? method.name.to_sym) #TODO: multiple args
169
+ mod_list[:methods][cls] = [] unless mod_list[:methods][cls]
170
+ # stuff both method name and the type of the argument in
171
+ mod_list[:methods][cls] << method.name
172
+ end
173
+ end if cls.respond_to? :ancestors and cls.ancestors.include? JavaProxy # some are not java classes. ignore those
174
+ end
175
+
176
+ mod_list[:methods].each do |clz, method|
177
+ child_catcher[clz.to_s] = "" unless child_catcher[clz.to_s]
178
+ write_event_method child_catcher, clz, method
179
+ end
180
+
147
181
  # load the yaml descriptors
148
182
 
149
183
  ydescs = YAML.load_file("#{File.dirname(__FILE__)}/core_ext/exts.yml")
@@ -199,7 +233,7 @@ module JRubyFX
199
233
 
200
234
  child_catcher.each do |clz, defs|
201
235
  next if defs == "" || defs == nil
202
- # TODO: do we need to include the dsl? is this the fastest way to do it?
236
+ # TODO: do we need to include the dsl? is this the fastest way to do it?
203
237
  outf<< <<HERDOC
204
238
  class #{clz}
205
239
  include JRubyFX::DSL
@@ -208,6 +242,21 @@ HERDOC
208
242
  end
209
243
  end
210
244
 
245
+ def self.write_event_method(outf, in_class, jfuncnclasses)
246
+ jfuncnclasses.each do |jfunc, jclass|
247
+ next if jfunc.include? "impl_"
248
+ outf[in_class.to_s] << <<ENDNAIVE
249
+ def #{jfunc.to_s.gsub(/^set/i,'').snake_case}(&block)
250
+ if block_given?
251
+ #{jfunc.to_s} block
252
+ else
253
+ #{jfunc.to_s.gsub(/^set/i,'get')}
254
+ end
255
+ end
256
+ ENDNAIVE
257
+ end
258
+ end
259
+
211
260
  def self.write_enum_method_converter(outf, in_class, jfuncnclasses)
212
261
  jfuncnclasses.each do |jfunc, jclass|
213
262
  next if jfunc.include? "impl_"
@@ -23,245 +23,250 @@ module JRubyFX
23
23
  NAME_TO_CLASSES = {
24
24
  # Manual overrides
25
25
  'observable_array_list' => proc { |*args| FXCollections.observable_array_list(*args) },
26
- 'double_property' => SimpleDoubleProperty,
26
+ 'double_property' => Java::JavafxBeansProperty::SimpleDoubleProperty,
27
27
  'xy_chart_series' => Java::javafx.scene.chart.XYChart::Series,
28
28
  'xy_chart_data' => Java::javafx.scene.chart.XYChart::Data,
29
29
  # Automatically generated
30
- 'animation' => Animation,
31
- 'animation_timer' => AnimationTimer,
32
- 'fade_transition' => FadeTransition,
33
- 'fill_transition' => FillTransition,
34
- 'interpolator' => Interpolator,
35
- 'key_frame' => KeyFrame,
36
- 'key_value' => KeyValue,
37
- 'parallel_transition' => ParallelTransition,
38
- 'path_transition' => PathTransition,
39
- 'pause_transition' => PauseTransition,
40
- 'rotate_transition' => RotateTransition,
41
- 'scale_transition' => ScaleTransition,
42
- 'sequential_transition' => SequentialTransition,
43
- 'stroke_transition' => StrokeTransition,
44
- 'timeline' => Timeline,
45
- 'transition' => Transition,
46
- 'translate_transition' => TranslateTransition,
47
- 'platform' => Platform,
48
- 'simple_boolean_property' => SimpleBooleanProperty,
49
- 'simple_double_property' => SimpleDoubleProperty,
50
- 'simple_float_property' => SimpleFloatProperty,
51
- 'simple_integer_property' => SimpleIntegerProperty,
52
- 'simple_list_property' => SimpleListProperty,
53
- 'simple_long_property' => SimpleLongProperty,
54
- 'simple_map_property' => SimpleMapProperty,
55
- 'simple_object_property' => SimpleObjectProperty,
56
- 'simple_set_property' => SimpleSetProperty,
57
- 'simple_string_property' => SimpleStringProperty,
58
- 'change_listener' => ChangeListener,
59
- 'fx_collections' => FXCollections,
60
- 'event' => Event,
61
- 'action_event' => ActionEvent,
62
- 'event_handler' => EventHandler,
63
- 'initializable' => Initializable,
64
- 'load_exception' => LoadException,
65
- 'horizontal_direction' => HorizontalDirection,
66
- 'h_pos' => HPos,
67
- 'insets' => Insets,
68
- 'orientation' => Orientation,
69
- 'pos' => Pos,
70
- 'rectangle2_d' => Rectangle2D,
71
- 'side' => Side,
72
- 'vertical_direction' => VerticalDirection,
73
- 'v_pos' => VPos,
74
- 'group' => Group,
75
- 'node' => Node,
76
- 'parent' => Parent,
77
- 'scene' => Scene,
78
- 'canvas' => Canvas,
79
- 'area_chart' => AreaChart,
80
- 'axis' => Axis,
81
- 'bar_chart' => BarChart,
82
- 'bubble_chart' => BubbleChart,
83
- 'category_axis' => CategoryAxis,
84
- 'chart' => Chart,
85
- 'line_chart' => LineChart,
86
- 'number_axis' => NumberAxis,
87
- 'pie_chart' => PieChart,
88
- 'scatter_chart' => ScatterChart,
89
- 'stacked_area_chart' => StackedAreaChart,
90
- 'stacked_bar_chart' => StackedBarChart,
91
- 'value_axis' => ValueAxis,
92
- 'xy_chart' => XYChart,
93
- 'accordion' => Accordion,
94
- 'button' => Button,
95
- 'cell' => Cell,
96
- 'check_box' => CheckBox,
97
- 'check_box_tree_item' => CheckBoxTreeItem,
98
- 'check_menu_item' => CheckMenuItem,
99
- 'choice_box' => ChoiceBox,
100
- 'color_picker' => ColorPicker,
101
- 'combo_box' => ComboBox,
102
- 'context_menu' => ContextMenu,
103
- 'hyperlink' => Hyperlink,
104
- 'label' => Label,
105
- 'list_cell' => ListCell,
106
- 'list_view' => ListView,
107
- 'menu' => Menu,
108
- 'menu_bar' => MenuBar,
109
- 'menu_button' => MenuButton,
110
- 'menu_item' => MenuItem,
111
- 'pagination' => Pagination,
112
- 'password_field' => PasswordField,
113
- 'popup_control' => PopupControl,
114
- 'progress_bar' => ProgressBar,
115
- 'progress_indicator' => ProgressIndicator,
116
- 'radio_button' => RadioButton,
117
- 'radio_menu_item' => RadioMenuItem,
118
- 'scroll_bar' => ScrollBar,
119
- 'scroll_pane' => ScrollPane,
120
- 'separator' => Separator,
121
- 'separator_menu_item' => SeparatorMenuItem,
122
- 'slider' => Slider,
123
- 'split_menu_button' => SplitMenuButton,
124
- 'split_pane' => SplitPane,
125
- 'tab' => Tab,
126
- 'table_view' => TableView,
127
- 'table_cell' => TableCell,
128
- 'table_column' => TableColumn,
129
- 'tab_pane' => TabPane,
130
- 'text_area' => TextArea,
131
- 'text_field' => TextField,
132
- 'titled_pane' => TitledPane,
133
- 'toggle_button' => ToggleButton,
134
- 'toggle_group' => ToggleGroup,
135
- 'tool_bar' => ToolBar,
136
- 'tooltip' => Tooltip,
137
- 'tree_cell' => TreeCell,
138
- 'tree_item' => TreeItem,
139
- 'tree_view' => TreeView,
140
- 'content_display' => ContentDisplay,
141
- 'overrun_style' => OverrunStyle,
142
- 'selection_mode' => SelectionMode,
143
- 'blend' => Blend,
144
- 'blend_mode' => BlendMode,
145
- 'bloom' => Bloom,
146
- 'blur_type' => BlurType,
147
- 'box_blur' => BoxBlur,
148
- 'color_adjust' => ColorAdjust,
149
- 'color_input' => ColorInput,
150
- 'displacement_map' => DisplacementMap,
151
- 'drop_shadow' => DropShadow,
152
- 'gaussian_blur' => GaussianBlur,
153
- 'glow' => Glow,
154
- 'image_input' => ImageInput,
155
- 'inner_shadow' => InnerShadow,
156
- 'lighting' => Lighting,
157
- 'motion_blur' => MotionBlur,
158
- 'perspective_transform' => PerspectiveTransform,
159
- 'reflection' => Reflection,
160
- 'sepia_tone' => SepiaTone,
161
- 'shadow' => Shadow,
162
- 'image' => Image,
163
- 'image_view' => ImageView,
164
- 'pixel_reader' => PixelReader,
165
- 'pixel_writer' => PixelWriter,
166
- 'clipboard' => Clipboard,
167
- 'clipboard_content' => ClipboardContent,
168
- 'context_menu_event' => ContextMenuEvent,
169
- 'drag_event' => DragEvent,
170
- 'gesture_event' => GestureEvent,
171
- 'input_event' => InputEvent,
172
- 'input_method_event' => InputMethodEvent,
173
- 'key_code' => KeyCode,
174
- 'key_event' => KeyEvent,
175
- 'mnemonic' => Mnemonic,
176
- 'mouse_drag_event' => MouseDragEvent,
177
- 'mouse_event' => MouseEvent,
178
- 'rotate_event' => RotateEvent,
179
- 'scroll_event' => ScrollEvent,
180
- 'swipe_event' => SwipeEvent,
181
- 'touch_event' => TouchEvent,
182
- 'transfer_mode' => TransferMode,
183
- 'zoom_event' => ZoomEvent,
184
- 'anchor_pane' => AnchorPane,
185
- 'border_pane' => BorderPane,
186
- 'column_constraints' => ColumnConstraints,
187
- 'flow_pane' => FlowPane,
188
- 'grid_pane' => GridPane,
189
- 'hbox' => HBox,
190
- 'pane' => Pane,
191
- 'priority' => Priority,
192
- 'row_constraints' => RowConstraints,
193
- 'stack_pane' => StackPane,
194
- 'tile_pane' => TilePane,
195
- 'vbox' => VBox,
196
- 'audio_clip' => AudioClip,
197
- 'audio_equalizer' => AudioEqualizer,
198
- 'audio_track' => AudioTrack,
199
- 'equalizer_band' => EqualizerBand,
200
- 'media' => Media,
201
- 'media_exception' => MediaException,
202
- 'media_error_event' => MediaErrorEvent,
203
- 'media_marker_event' => MediaMarkerEvent,
204
- 'media_player' => MediaPlayer,
205
- 'media_view' => MediaView,
206
- 'video_track' => VideoTrack,
207
- 'color' => Color,
208
- 'cycle_method' => CycleMethod,
209
- 'image_pattern' => ImagePattern,
210
- 'linear_gradient' => LinearGradient,
211
- 'paint' => Paint,
212
- 'radial_gradient' => RadialGradient,
213
- 'stop' => Stop,
214
- 'arc' => Arc,
215
- 'arc_to' => ArcTo,
216
- 'arc_type' => ArcType,
217
- 'circle' => Circle,
218
- 'close_path' => ClosePath,
219
- 'cubic_curve' => CubicCurve,
220
- 'cubic_curve_to' => CubicCurveTo,
221
- 'ellipse' => Ellipse,
222
- 'fill_rule' => FillRule,
223
- 'hline_to' => HLineTo,
224
- 'line' => Line,
225
- 'line_to' => LineTo,
226
- 'move_to' => MoveTo,
227
- 'path' => Path,
228
- 'path_element' => PathElement,
229
- 'polygon' => Polygon,
230
- 'polyline' => Polyline,
231
- 'quad_curve' => QuadCurve,
232
- 'quad_curve_to' => QuadCurveTo,
233
- 'rectangle' => Rectangle,
234
- 'shape' => Shape,
235
- 'stroke_line_cap' => StrokeLineCap,
236
- 'stroke_line_join' => StrokeLineJoin,
237
- 'stroke_type' => StrokeType,
238
- 'svg_path' => SVGPath,
239
- 'vline_to' => VLineTo,
240
- 'font' => Font,
241
- 'font_posture' => FontPosture,
242
- 'font_smoothing_type' => FontSmoothingType,
243
- 'font_weight' => FontWeight,
244
- 'text' => Text,
245
- 'text_alignment' => TextAlignment,
246
- 'text_bounds_type' => TextBoundsType,
247
- 'affine' => Affine,
248
- 'rotate' => Rotate,
249
- 'scale' => Scale,
250
- 'shear' => Shear,
251
- 'translate' => Translate,
252
- 'web_view' => WebView,
253
- 'html_editor' => HTMLEditor,
254
- 'directory_chooser' => DirectoryChooser,
255
- 'file_chooser' => FileChooser,
256
- 'modality' => Modality,
257
- 'popup' => Popup,
258
- 'popup_window' => PopupWindow,
259
- 'screen' => Screen,
260
- 'stage' => Stage,
261
- 'stage_style' => StageStyle,
262
- 'window' => Window,
263
- 'window_event' => WindowEvent,
264
- 'duration' => Duration,
30
+ }
31
+ NAME_TO_CLASS_NAME = {
32
+ 'animation' => "Java::JavafxAnimation::Animation",
33
+ 'animation_timer' => "Java::JavafxAnimation::AnimationTimer",
34
+ 'fade_transition' => "Java::JavafxAnimation::FadeTransition",
35
+ 'fill_transition' => "Java::JavafxAnimation::FillTransition",
36
+ 'interpolator' => "Java::JavafxAnimation::Interpolator",
37
+ 'key_frame' => "Java::JavafxAnimation::KeyFrame",
38
+ 'key_value' => "Java::JavafxAnimation::KeyValue",
39
+ 'parallel_transition' => "Java::JavafxAnimation::ParallelTransition",
40
+ 'path_transition' => "Java::JavafxAnimation::PathTransition",
41
+ 'pause_transition' => "Java::JavafxAnimation::PauseTransition",
42
+ 'rotate_transition' => "Java::JavafxAnimation::RotateTransition",
43
+ 'scale_transition' => "Java::JavafxAnimation::ScaleTransition",
44
+ 'sequential_transition' => "Java::JavafxAnimation::SequentialTransition",
45
+ 'stroke_transition' => "Java::JavafxAnimation::StrokeTransition",
46
+ 'timeline' => "Java::JavafxAnimation::Timeline",
47
+ 'transition' => "Java::JavafxAnimation::Transition",
48
+ 'translate_transition' => "Java::JavafxAnimation::TranslateTransition",
49
+ 'platform' => "Java::JavafxApplication::Platform",
50
+ 'simple_boolean_property' => "Java::JavafxBeansProperty::SimpleBooleanProperty",
51
+ 'simple_double_property' => "Java::JavafxBeansProperty::SimpleDoubleProperty",
52
+ 'simple_float_property' => "Java::JavafxBeansProperty::SimpleFloatProperty",
53
+ 'simple_integer_property' => "Java::JavafxBeansProperty::SimpleIntegerProperty",
54
+ 'simple_list_property' => "Java::JavafxBeansProperty::SimpleListProperty",
55
+ 'simple_long_property' => "Java::JavafxBeansProperty::SimpleLongProperty",
56
+ 'simple_map_property' => "Java::JavafxBeansProperty::SimpleMapProperty",
57
+ 'simple_object_property' => "Java::JavafxBeansProperty::SimpleObjectProperty",
58
+ 'simple_set_property' => "Java::JavafxBeansProperty::SimpleSetProperty",
59
+ 'simple_string_property' => "Java::JavafxBeansProperty::SimpleStringProperty",
60
+ 'change_listener' => "Java::JavafxBeansValue::ChangeListener",
61
+ 'fx_collections' => "Java::JavafxCollections::FXCollections",
62
+ 'worker' => "Java::JavafxConcurrent::Worker",
63
+ 'task' => "Java::JavafxConcurrent::Task",
64
+ 'service' => "Java::JavafxConcurrent::Service",
65
+ 'event' => "Java::JavafxEvent::Event",
66
+ 'action_event' => "Java::JavafxEvent::ActionEvent",
67
+ 'event_handler' => "Java::JavafxEvent::EventHandler",
68
+ 'initializable' => "Java::JavafxFxml::Initializable",
69
+ 'load_exception' => "Java::JavafxFxml::LoadException",
70
+ 'horizontal_direction' => "Java::JavafxGeometry::HorizontalDirection",
71
+ 'h_pos' => "Java::JavafxGeometry::HPos",
72
+ 'insets' => "Java::JavafxGeometry::Insets",
73
+ 'orientation' => "Java::JavafxGeometry::Orientation",
74
+ 'pos' => "Java::JavafxGeometry::Pos",
75
+ 'rectangle2_d' => "Java::JavafxGeometry::Rectangle2D",
76
+ 'side' => "Java::JavafxGeometry::Side",
77
+ 'vertical_direction' => "Java::JavafxGeometry::VerticalDirection",
78
+ 'v_pos' => "Java::JavafxGeometry::VPos",
79
+ 'group' => "Java::JavafxScene::Group",
80
+ 'node' => "Java::JavafxScene::Node",
81
+ 'parent' => "Java::JavafxScene::Parent",
82
+ 'scene' => "Java::JavafxScene::Scene",
83
+ 'canvas' => "Java::JavafxSceneCanvas::Canvas",
84
+ 'area_chart' => "Java::JavafxSceneChart::AreaChart",
85
+ 'axis' => "Java::JavafxSceneChart::Axis",
86
+ 'bar_chart' => "Java::JavafxSceneChart::BarChart",
87
+ 'bubble_chart' => "Java::JavafxSceneChart::BubbleChart",
88
+ 'category_axis' => "Java::JavafxSceneChart::CategoryAxis",
89
+ 'chart' => "Java::JavafxSceneChart::Chart",
90
+ 'line_chart' => "Java::JavafxSceneChart::LineChart",
91
+ 'number_axis' => "Java::JavafxSceneChart::NumberAxis",
92
+ 'pie_chart' => "Java::JavafxSceneChart::PieChart",
93
+ 'scatter_chart' => "Java::JavafxSceneChart::ScatterChart",
94
+ 'stacked_area_chart' => "Java::JavafxSceneChart::StackedAreaChart",
95
+ 'stacked_bar_chart' => "Java::JavafxSceneChart::StackedBarChart",
96
+ 'value_axis' => "Java::JavafxSceneChart::ValueAxis",
97
+ 'xy_chart' => "Java::JavafxSceneChart::XYChart",
98
+ 'accordion' => "Java::JavafxSceneControl::Accordion",
99
+ 'button' => "Java::JavafxSceneControl::Button",
100
+ 'cell' => "Java::JavafxSceneControl::Cell",
101
+ 'check_box' => "Java::JavafxSceneControl::CheckBox",
102
+ 'check_box_tree_item' => "Java::JavafxSceneControl::CheckBoxTreeItem",
103
+ 'check_menu_item' => "Java::JavafxSceneControl::CheckMenuItem",
104
+ 'choice_box' => "Java::JavafxSceneControl::ChoiceBox",
105
+ 'color_picker' => "Java::JavafxSceneControl::ColorPicker",
106
+ 'combo_box' => "Java::JavafxSceneControl::ComboBox",
107
+ 'context_menu' => "Java::JavafxSceneControl::ContextMenu",
108
+ 'hyperlink' => "Java::JavafxSceneControl::Hyperlink",
109
+ 'label' => "Java::JavafxSceneControl::Label",
110
+ 'list_cell' => "Java::JavafxSceneControl::ListCell",
111
+ 'list_view' => "Java::JavafxSceneControl::ListView",
112
+ 'menu' => "Java::JavafxSceneControl::Menu",
113
+ 'menu_bar' => "Java::JavafxSceneControl::MenuBar",
114
+ 'menu_button' => "Java::JavafxSceneControl::MenuButton",
115
+ 'menu_item' => "Java::JavafxSceneControl::MenuItem",
116
+ 'pagination' => "Java::JavafxSceneControl::Pagination",
117
+ 'password_field' => "Java::JavafxSceneControl::PasswordField",
118
+ 'popup_control' => "Java::JavafxSceneControl::PopupControl",
119
+ 'progress_bar' => "Java::JavafxSceneControl::ProgressBar",
120
+ 'progress_indicator' => "Java::JavafxSceneControl::ProgressIndicator",
121
+ 'radio_button' => "Java::JavafxSceneControl::RadioButton",
122
+ 'radio_menu_item' => "Java::JavafxSceneControl::RadioMenuItem",
123
+ 'scroll_bar' => "Java::JavafxSceneControl::ScrollBar",
124
+ 'scroll_pane' => "Java::JavafxSceneControl::ScrollPane",
125
+ 'separator' => "Java::JavafxSceneControl::Separator",
126
+ 'separator_menu_item' => "Java::JavafxSceneControl::SeparatorMenuItem",
127
+ 'slider' => "Java::JavafxSceneControl::Slider",
128
+ 'split_menu_button' => "Java::JavafxSceneControl::SplitMenuButton",
129
+ 'split_pane' => "Java::JavafxSceneControl::SplitPane",
130
+ 'tab' => "Java::JavafxSceneControl::Tab",
131
+ 'table_view' => "Java::JavafxSceneControl::TableView",
132
+ 'table_cell' => "Java::JavafxSceneControl::TableCell",
133
+ 'table_column' => "Java::JavafxSceneControl::TableColumn",
134
+ 'tab_pane' => "Java::JavafxSceneControl::TabPane",
135
+ 'text_area' => "Java::JavafxSceneControl::TextArea",
136
+ 'text_field' => "Java::JavafxSceneControl::TextField",
137
+ 'titled_pane' => "Java::JavafxSceneControl::TitledPane",
138
+ 'toggle_button' => "Java::JavafxSceneControl::ToggleButton",
139
+ 'toggle_group' => "Java::JavafxSceneControl::ToggleGroup",
140
+ 'tool_bar' => "Java::JavafxSceneControl::ToolBar",
141
+ 'tooltip' => "Java::JavafxSceneControl::Tooltip",
142
+ 'tree_cell' => "Java::JavafxSceneControl::TreeCell",
143
+ 'tree_item' => "Java::JavafxSceneControl::TreeItem",
144
+ 'tree_view' => "Java::JavafxSceneControl::TreeView",
145
+ 'content_display' => "Java::JavafxSceneControl::ContentDisplay",
146
+ 'overrun_style' => "Java::JavafxSceneControl::OverrunStyle",
147
+ 'selection_mode' => "Java::JavafxSceneControl::SelectionMode",
148
+ 'blend' => "Java::JavafxSceneEffect::Blend",
149
+ 'blend_mode' => "Java::JavafxSceneEffect::BlendMode",
150
+ 'bloom' => "Java::JavafxSceneEffect::Bloom",
151
+ 'blur_type' => "Java::JavafxSceneEffect::BlurType",
152
+ 'box_blur' => "Java::JavafxSceneEffect::BoxBlur",
153
+ 'color_adjust' => "Java::JavafxSceneEffect::ColorAdjust",
154
+ 'color_input' => "Java::JavafxSceneEffect::ColorInput",
155
+ 'displacement_map' => "Java::JavafxSceneEffect::DisplacementMap",
156
+ 'drop_shadow' => "Java::JavafxSceneEffect::DropShadow",
157
+ 'gaussian_blur' => "Java::JavafxSceneEffect::GaussianBlur",
158
+ 'glow' => "Java::JavafxSceneEffect::Glow",
159
+ 'image_input' => "Java::JavafxSceneEffect::ImageInput",
160
+ 'inner_shadow' => "Java::JavafxSceneEffect::InnerShadow",
161
+ 'lighting' => "Java::JavafxSceneEffect::Lighting",
162
+ 'motion_blur' => "Java::JavafxSceneEffect::MotionBlur",
163
+ 'perspective_transform' => "Java::JavafxSceneEffect::PerspectiveTransform",
164
+ 'reflection' => "Java::JavafxSceneEffect::Reflection",
165
+ 'sepia_tone' => "Java::JavafxSceneEffect::SepiaTone",
166
+ 'shadow' => "Java::JavafxSceneEffect::Shadow",
167
+ 'image' => "Java::JavafxSceneImage::Image",
168
+ 'image_view' => "Java::JavafxSceneImage::ImageView",
169
+ 'pixel_reader' => "Java::JavafxSceneImage::PixelReader",
170
+ 'pixel_writer' => "Java::JavafxSceneImage::PixelWriter",
171
+ 'clipboard' => "Java::JavafxSceneInput::Clipboard",
172
+ 'clipboard_content' => "Java::JavafxSceneInput::ClipboardContent",
173
+ 'context_menu_event' => "Java::JavafxSceneInput::ContextMenuEvent",
174
+ 'drag_event' => "Java::JavafxSceneInput::DragEvent",
175
+ 'gesture_event' => "Java::JavafxSceneInput::GestureEvent",
176
+ 'input_event' => "Java::JavafxSceneInput::InputEvent",
177
+ 'input_method_event' => "Java::JavafxSceneInput::InputMethodEvent",
178
+ 'key_code' => "Java::JavafxSceneInput::KeyCode",
179
+ 'key_event' => "Java::JavafxSceneInput::KeyEvent",
180
+ 'mnemonic' => "Java::JavafxSceneInput::Mnemonic",
181
+ 'mouse_drag_event' => "Java::JavafxSceneInput::MouseDragEvent",
182
+ 'mouse_event' => "Java::JavafxSceneInput::MouseEvent",
183
+ 'rotate_event' => "Java::JavafxSceneInput::RotateEvent",
184
+ 'scroll_event' => "Java::JavafxSceneInput::ScrollEvent",
185
+ 'swipe_event' => "Java::JavafxSceneInput::SwipeEvent",
186
+ 'touch_event' => "Java::JavafxSceneInput::TouchEvent",
187
+ 'transfer_mode' => "Java::JavafxSceneInput::TransferMode",
188
+ 'zoom_event' => "Java::JavafxSceneInput::ZoomEvent",
189
+ 'anchor_pane' => "Java::JavafxSceneLayout::AnchorPane",
190
+ 'border_pane' => "Java::JavafxSceneLayout::BorderPane",
191
+ 'column_constraints' => "Java::JavafxSceneLayout::ColumnConstraints",
192
+ 'flow_pane' => "Java::JavafxSceneLayout::FlowPane",
193
+ 'grid_pane' => "Java::JavafxSceneLayout::GridPane",
194
+ 'hbox' => "Java::JavafxSceneLayout::HBox",
195
+ 'pane' => "Java::JavafxSceneLayout::Pane",
196
+ 'priority' => "Java::JavafxSceneLayout::Priority",
197
+ 'row_constraints' => "Java::JavafxSceneLayout::RowConstraints",
198
+ 'stack_pane' => "Java::JavafxSceneLayout::StackPane",
199
+ 'tile_pane' => "Java::JavafxSceneLayout::TilePane",
200
+ 'vbox' => "Java::JavafxSceneLayout::VBox",
201
+ 'audio_clip' => "Java::JavafxSceneMedia::AudioClip",
202
+ 'audio_equalizer' => "Java::JavafxSceneMedia::AudioEqualizer",
203
+ 'audio_track' => "Java::JavafxSceneMedia::AudioTrack",
204
+ 'equalizer_band' => "Java::JavafxSceneMedia::EqualizerBand",
205
+ 'media' => "Java::JavafxSceneMedia::Media",
206
+ 'media_exception' => "Java::JavafxSceneMedia::MediaException",
207
+ 'media_error_event' => "Java::JavafxSceneMedia::MediaErrorEvent",
208
+ 'media_marker_event' => "Java::JavafxSceneMedia::MediaMarkerEvent",
209
+ 'media_player' => "Java::JavafxSceneMedia::MediaPlayer",
210
+ 'media_view' => "Java::JavafxSceneMedia::MediaView",
211
+ 'video_track' => "Java::JavafxSceneMedia::VideoTrack",
212
+ 'color' => "Java::JavafxScenePaint::Color",
213
+ 'cycle_method' => "Java::JavafxScenePaint::CycleMethod",
214
+ 'image_pattern' => "Java::JavafxScenePaint::ImagePattern",
215
+ 'linear_gradient' => "Java::JavafxScenePaint::LinearGradient",
216
+ 'paint' => "Java::JavafxScenePaint::Paint",
217
+ 'radial_gradient' => "Java::JavafxScenePaint::RadialGradient",
218
+ 'stop' => "Java::JavafxScenePaint::Stop",
219
+ 'arc' => "Java::JavafxSceneShape::Arc",
220
+ 'arc_to' => "Java::JavafxSceneShape::ArcTo",
221
+ 'arc_type' => "Java::JavafxSceneShape::ArcType",
222
+ 'circle' => "Java::JavafxSceneShape::Circle",
223
+ 'close_path' => "Java::JavafxSceneShape::ClosePath",
224
+ 'cubic_curve' => "Java::JavafxSceneShape::CubicCurve",
225
+ 'cubic_curve_to' => "Java::JavafxSceneShape::CubicCurveTo",
226
+ 'ellipse' => "Java::JavafxSceneShape::Ellipse",
227
+ 'fill_rule' => "Java::JavafxSceneShape::FillRule",
228
+ 'hline_to' => "Java::JavafxSceneShape::HLineTo",
229
+ 'line' => "Java::JavafxSceneShape::Line",
230
+ 'line_to' => "Java::JavafxSceneShape::LineTo",
231
+ 'move_to' => "Java::JavafxSceneShape::MoveTo",
232
+ 'path' => "Java::JavafxSceneShape::Path",
233
+ 'path_element' => "Java::JavafxSceneShape::PathElement",
234
+ 'polygon' => "Java::JavafxSceneShape::Polygon",
235
+ 'polyline' => "Java::JavafxSceneShape::Polyline",
236
+ 'quad_curve' => "Java::JavafxSceneShape::QuadCurve",
237
+ 'quad_curve_to' => "Java::JavafxSceneShape::QuadCurveTo",
238
+ 'rectangle' => "Java::JavafxSceneShape::Rectangle",
239
+ 'shape' => "Java::JavafxSceneShape::Shape",
240
+ 'stroke_line_cap' => "Java::JavafxSceneShape::StrokeLineCap",
241
+ 'stroke_line_join' => "Java::JavafxSceneShape::StrokeLineJoin",
242
+ 'stroke_type' => "Java::JavafxSceneShape::StrokeType",
243
+ 'svg_path' => "Java::JavafxSceneShape::SVGPath",
244
+ 'vline_to' => "Java::JavafxSceneShape::VLineTo",
245
+ 'font' => "Java::JavafxSceneText::Font",
246
+ 'font_posture' => "Java::JavafxSceneText::FontPosture",
247
+ 'font_smoothing_type' => "Java::JavafxSceneText::FontSmoothingType",
248
+ 'font_weight' => "Java::JavafxSceneText::FontWeight",
249
+ 'text' => "Java::JavafxSceneText::Text",
250
+ 'text_alignment' => "Java::JavafxSceneText::TextAlignment",
251
+ 'text_bounds_type' => "Java::JavafxSceneText::TextBoundsType",
252
+ 'affine' => "Java::JavafxSceneTransform::Affine",
253
+ 'rotate' => "Java::JavafxSceneTransform::Rotate",
254
+ 'scale' => "Java::JavafxSceneTransform::Scale",
255
+ 'shear' => "Java::JavafxSceneTransform::Shear",
256
+ 'translate' => "Java::JavafxSceneTransform::Translate",
257
+ 'web_view' => "Java::JavafxSceneWeb::WebView",
258
+ 'html_editor' => "Java::JavafxSceneWeb::HTMLEditor",
259
+ 'directory_chooser' => "Java::JavafxStage::DirectoryChooser",
260
+ 'file_chooser' => "Java::JavafxStage::FileChooser",
261
+ 'modality' => "Java::JavafxStage::Modality",
262
+ 'popup' => "Java::JavafxStage::Popup",
263
+ 'popup_window' => "Java::JavafxStage::PopupWindow",
264
+ 'screen' => "Java::JavafxStage::Screen",
265
+ 'stage' => "Java::JavafxStage::Stage",
266
+ 'stage_style' => "Java::JavafxStage::StageStyle",
267
+ 'window' => "Java::JavafxStage::Window",
268
+ 'window_event' => "Java::JavafxStage::WindowEvent",
269
+ 'duration' => "Java::JavafxUtil::Duration",
265
270
  }
266
271
  end
267
272
  end