# File lib/celerity/element.rb, line 238
    def attribute_string
      assert_exists

      result = ''
      @object.getAttributes.each do |attribute|
        result << %Q{#{attribute.getName}="#{attribute.getValue}"}
      end

      result
    end