# File lib/state_machine/integrations/active_model.rb, line 348
        def after_initialize
          if supports_observers?
            callbacks[:before] << Callback.new(:before) {|object, transition| notify(:before, object, transition)}
            callbacks[:after] << Callback.new(:after) {|object, transition| notify(:after, object, transition)}
          end
        end