Class WSDL::Info
In: wsdl/info.rb
Parent: Object

Methods

Attributes

id  [RW] 
parent  [RW] 
root  [RW] 

Public Class methods

[Source]

# File wsdl/info.rb, line 17
  def initialize
    @root = nil
    @parent = nil
    @id = nil
  end

Public Instance methods

[Source]

# File wsdl/info.rb, line 23
  def inspect
    if self.respond_to?(:name)
      sprintf("#<%s:0x%x %s>", self.class.name, __id__, self.name)
    else
      sprintf("#<%s:0x%x>", self.class.name, __id__)
    end
  end

[Source]

# File wsdl/info.rb, line 33
  def parse_attr(attr, value); end

[Source]

# File wsdl/info.rb, line 31
  def parse_element(element); end

[Source]

# File wsdl/info.rb, line 35
  def parse_epilogue; end

[Validate]

ruby-doc.org is hosted and maintained by James Britt and Happy Camper Studios, a Ruby application development company in Phoenix, Arizona. The site was created in 2002 as part of the Ruby Documentation Project to promote the Ruby language and to help other Ruby hackers.

Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.

For more information on the Ruby programming language, visit ruby-lang.org.

Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.