Class: Java::JavafxStage::PopupWindow
- Inherits:
-
Object
- Object
- Java::JavafxStage::PopupWindow
- Includes:
- JRubyFX::DSL
- Defined in:
- lib/jrubyfx/core_ext/precompiled.rb
Constant Summary
Constants included from JRubyFX::DSL
JRubyFX::DSL::NAME_TO_CLASSES, JRubyFX::DSL::NAME_TO_CLASS_NAME
Constants included from JRubyFX::FXImports
JRubyFX::FXImports::JFX_CLASS_HIERARCHY, JRubyFX::FXImports::LOCAL_NAME_MAP
Constants included from JRubyFX
Instance Method Summary collapse
Methods included from JRubyFX::DSL
compile_dsl, included, load_dsl, #logical_lookup, #method_missing, #self_test_lookup, write_color_method_converter, write_enum_converter, write_enum_method_converter, write_event_method
Methods included from JRubyFX::FXImports
Methods included from JRubyFX
#build, included, load_fx, #run_later, #with
Methods included from JRubyFX::Utils::CommonUtils
#attempt_conversion, #populate_properties, #split_args_from_properties
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class JRubyFX::DSL
Instance Method Details
#anchor_location=(rbenum) ⇒ Object
1315 1316 1317 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 1315 def anchor_location=(rbenum) java_send "setAnchorLocation", [Java::JavafxStage::PopupWindow::AnchorLocation], JRubyFX::Utils::CommonConverters.parse_ruby_symbols(rbenum, Java::JavafxStage::PopupWindow::AnchorLocation) end |
#on_auto_hide(&block) ⇒ Object
1318 1319 1320 1321 1322 1323 1324 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 1318 def on_auto_hide(&block) if block_given? setOnAutoHide block else getOnAutoHide end end |