Class: Java::JavafxSceneControl::TreeView
- Inherits:
-
Object
- Object
- Java::JavafxSceneControl::TreeView
- Includes:
- JRubyFX::DSL
- Defined in:
- lib/jrubyfx/core_ext/precompiled.rb
Overview
TODO: logical_child(content)
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
#on_edit_cancel(&block) ⇒ Object
1519 1520 1521 1522 1523 1524 1525 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 1519 def on_edit_cancel(&block) if block_given? setOnEditCancel block else getOnEditCancel end end |
#on_edit_commit(&block) ⇒ Object
1526 1527 1528 1529 1530 1531 1532 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 1526 def on_edit_commit(&block) if block_given? setOnEditCommit block else getOnEditCommit end end |
#on_edit_start(&block) ⇒ Object
1533 1534 1535 1536 1537 1538 1539 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 1533 def on_edit_start(&block) if block_given? setOnEditStart block else getOnEditStart end end |