Class: Java::JavafxSceneControl::TableColumn
- Inherits:
-
Object
- Object
- Java::JavafxSceneControl::TableColumn
- 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
- #on_edit_cancel(&block) ⇒ Object
- #on_edit_commit(&block) ⇒ Object
- #on_edit_start(&block) ⇒ Object
- #sort_type=(rbenum) ⇒ Object
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
776 777 778 779 780 781 782 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 776 def on_edit_cancel(&block) if block_given? setOnEditCancel block else getOnEditCancel end end |
#on_edit_commit(&block) ⇒ Object
769 770 771 772 773 774 775 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 769 def on_edit_commit(&block) if block_given? setOnEditCommit block else getOnEditCommit end end |
#on_edit_start(&block) ⇒ Object
762 763 764 765 766 767 768 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 762 def on_edit_start(&block) if block_given? setOnEditStart block else getOnEditStart end end |
#sort_type=(rbenum) ⇒ Object
759 760 761 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 759 def sort_type=(rbenum) java_send "setSortType", [Java::JavafxSceneControl::TableColumn::SortType], JRubyFX::Utils::CommonConverters.parse_ruby_symbols(rbenum, Java::JavafxSceneControl::TableColumn::SortType) end |