class LolSoap::WSDLParser::ReferencedElement

Attributes

element[R]
reference[R]

Public Class Methods

new(reference, element) click to toggle source
# File lib/lolsoap/wsdl_parser.rb, line 90
def initialize(reference, element)
  @reference = reference
  @element   = element
end

Public Instance Methods

name() click to toggle source
# File lib/lolsoap/wsdl_parser.rb, line 95
def name
  element.name
end
namespace() click to toggle source
# File lib/lolsoap/wsdl_parser.rb, line 99
def namespace
  element.namespace
end
singular() click to toggle source
# File lib/lolsoap/wsdl_parser.rb, line 107
def singular
  reference.singular
end
type() click to toggle source
# File lib/lolsoap/wsdl_parser.rb, line 103
def type
  element.type
end