class Druzy::MVC::IndexedPropertyChangeEvent
Attributes
index[R]
Public Class Methods
new(source,property_name,old_value,new_value,index)
click to toggle source
Calls superclass method
Druzy::MVC::PropertyChangeEvent::new
# File lib/druzy/mvc/event.rb, line 33 def initialize(source,property_name,old_value,new_value,index) super(source, property_name, old_value, new_value) @index=index end