class LolSoap::WSDLParser::Node

Attributes

name[R]
namespace[R]
node[R]
parser[R]
schema[R]

Public Class Methods

new(parser, schema, node) click to toggle source
# File lib/lolsoap/wsdl_parser.rb, line 27
def initialize(parser, schema, node)
  @parser = parser
  @node   = node
  @schema = schema
end

Public Instance Methods

id() click to toggle source
# File lib/lolsoap/wsdl_parser.rb, line 33
def id
  [namespace, name]
end
target_namespace() click to toggle source
# File lib/lolsoap/wsdl_parser.rb, line 37
def target_namespace
  schema.target_namespace
end