Class XMLRPC::XMLWriter::Abstract
In: xmlrpc/create.rb
Parent: Object

Methods

ele   tag  

Public Instance methods

[Source]

# File xmlrpc/create.rb, line 17
      def ele(name, *children)
        element(name, nil, *children)
      end

[Source]

# File xmlrpc/create.rb, line 21
      def tag(name, txt)
        element(name, nil, text(txt))
      end

[Validate]