Class: Canis::PropertyChangeEvent
- Defined in:
- lib/canis/core/widgets/rwidget.rb
Overview
Created and sent to all listeners whenever a property is changed
Instance Attribute Summary collapse
-
#newvalue ⇒ Object
{{{.
-
#oldvalue ⇒ Object
{{{.
-
#property_name ⇒ Object
{{{.
-
#source ⇒ Object
{{{.
Instance Method Summary collapse
-
#initialize(source, property_name, oldvalue, newvalue) ⇒ PropertyChangeEvent
constructor
A new instance of PropertyChangeEvent.
- #inspect ⇒ Object
- #set(source, property_name, oldvalue, newvalue) ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(source, property_name, oldvalue, newvalue) ⇒ PropertyChangeEvent
Returns a new instance of PropertyChangeEvent.
2238 2239 2240 |
# File 'lib/canis/core/widgets/rwidget.rb', line 2238 def initialize source, property_name, oldvalue, newvalue set source, property_name, oldvalue, newvalue end |
Instance Attribute Details
#newvalue ⇒ Object
{{{
2237 2238 2239 |
# File 'lib/canis/core/widgets/rwidget.rb', line 2237 def newvalue @newvalue end |
#oldvalue ⇒ Object
{{{
2237 2238 2239 |
# File 'lib/canis/core/widgets/rwidget.rb', line 2237 def oldvalue @oldvalue end |
#property_name ⇒ Object
{{{
2237 2238 2239 |
# File 'lib/canis/core/widgets/rwidget.rb', line 2237 def property_name @property_name end |
#source ⇒ Object
{{{
2237 2238 2239 |
# File 'lib/canis/core/widgets/rwidget.rb', line 2237 def source @source end |
Instance Method Details
#inspect ⇒ Object
2248 2249 2250 |
# File 'lib/canis/core/widgets/rwidget.rb', line 2248 def inspect to_s end |
#set(source, property_name, oldvalue, newvalue) ⇒ Object
2241 2242 2243 2244 |
# File 'lib/canis/core/widgets/rwidget.rb', line 2241 def set source, property_name, oldvalue, newvalue @source, @property_name, @oldvalue, @newvalue = source, property_name, oldvalue, newvalue end |
#to_s ⇒ Object
2245 2246 2247 |
# File 'lib/canis/core/widgets/rwidget.rb', line 2245 def to_s "PROPERTY_CHANGE name: #{property_name}, oldval: #{@oldvalue}, newvalue: #{@newvalue}, source: #{@source}" end |