# File lib/clamp/attribute/definition.rb, line 42
      def write_method
        if multivalued?
          "append_to_#{attribute_name}"
        else
          "#{attribute_name}="
        end
      end