Class: Java::JavafxSceneLayout::FlowPane
- Inherits:
-
Object
- Object
- Java::JavafxSceneLayout::FlowPane
- Includes:
- JRubyFX::DSL
- Defined in:
- lib/jrubyfx/core_ext/precompiled.rb
Constant Summary
Constants included from JRubyFX::DSL
Constants included from JRubyFX
Constants included from JRubyFX::FXImports
JRubyFX::FXImports::JFX_CLASS_HIERARCHY
Instance Method Summary collapse
- #alignment=(rbenum) ⇒ Object
- #column_halignment=(rbenum) ⇒ Object
- #orientation=(rbenum) ⇒ Object
- #row_valignment=(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
Methods included from JRubyFX
#build, included, #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
#alignment=(rbenum) ⇒ Object
213 214 215 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 213 def alignment=(rbenum) java_send "setAlignment", [Java::JavafxGeometry::Pos], JRubyFX::Utils::CommonConverters.parse_ruby_symbols(rbenum, Java::JavafxGeometry::Pos) end |
#column_halignment=(rbenum) ⇒ Object
216 217 218 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 216 def column_halignment=(rbenum) java_send "setColumnHalignment", [Java::JavafxGeometry::HPos], JRubyFX::Utils::CommonConverters.parse_ruby_symbols(rbenum, Java::JavafxGeometry::HPos) end |
#orientation=(rbenum) ⇒ Object
210 211 212 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 210 def orientation=(rbenum) java_send "setOrientation", [Java::JavafxGeometry::Orientation], JRubyFX::Utils::CommonConverters.parse_ruby_symbols(rbenum, Java::JavafxGeometry::Orientation) end |
#row_valignment=(rbenum) ⇒ Object
219 220 221 |
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 219 def row_valignment=(rbenum) java_send "setRowValignment", [Java::JavafxGeometry::VPos], JRubyFX::Utils::CommonConverters.parse_ruby_symbols(rbenum, Java::JavafxGeometry::VPos) end |