# File lib/anise/annotative/attributes.rb, line 34
      def self.extended(base)
        #inheritor :instance_attributes, [], :|
        base_class = (class << base; self; end)
        #base_class.attribute_methods.each do |attr_method|
        base.attribute_methods.each do |attr_method|
          define_annotated_attribute(base_class, attr_method)
        end
      end