lib/cpee/handler_properties.rb in cpee-1.3.175 vs lib/cpee/handler_properties.rb in cpee-1.3.176
- old
+ new
@@ -15,28 +15,28 @@
class PropertiesHandler < Riddl::Utils::Properties::HandlerBase
def sync
case @property
when 'handlerwrapper'
@data.unserialize_handlerwrapper!
- @data.notify('properties/handlerwrapper/change', :instance => @data.instance)
+ @data.notify('handlerwrapper/change', :instance => @data.instance)
when 'description'
nots = @data.unserialize_description!
nots.uniq.each do |noti|
@data.notify(*noti)
end
when 'endpoints'
@data.unserialize_endpoints!
- @data.notify('properties/endpoints/change', :instance => @data.instance)
+ @data.notify('endpoints/change', :instance => @data.instance)
when 'dataelements'
@data.unserialize_dataelements!
- @data.notify('properties/dataelements/change', :instance => @data.instance)
+ @data.notify('dataelements/change', :instance => @data.instance)
when 'attributes'
@data.unserialize_attributes!
when 'positions'
@data.unserialize_positions!
- @data.notify('properties/position/change', :instance => @data.instance)
+ @data.notify('position/change', :instance => @data.instance)
when 'transformation'
- @data.notify('properties/transformation/change', :instance => @data.instance)
+ @data.notify('transformation/change', :instance => @data.instance)
when 'state'
@data.unserialize_state!
else
nil
end