Module: Java::javafx::beans::binding::NumberExpression

Defined in:
lib/jrubyfx/core_ext/observable_value.rb

Instance Method Summary collapse

Instance Method Details

#*(x) ⇒ Object



141
142
143
# File 'lib/jrubyfx/core_ext/observable_value.rb', line 141

def * x
  multiply x
end

#+(x) ⇒ Object



144
145
146
# File 'lib/jrubyfx/core_ext/observable_value.rb', line 144

def + x
  add x
end

#-(x) ⇒ Object



135
136
137
# File 'lib/jrubyfx/core_ext/observable_value.rb', line 135

def - x
  subtract x
end

#-@(x) ⇒ Object



147
148
149
# File 'lib/jrubyfx/core_ext/observable_value.rb', line 147

def -@ x
  negate x
end

#/(x) ⇒ Object



138
139
140
# File 'lib/jrubyfx/core_ext/observable_value.rb', line 138

def / x
  divide x
end