Info
# File lib/wsdl/message.rb, line 19 def initialize super @name = nil @parts = [] end
# File lib/wsdl/message.rb, line 43 def parse_attr(attr, value) case attr when NameAttrName @name = XSD::QName.new(parent.targetnamespace, value.source) else nil end end
# File lib/wsdl/message.rb, line 29 def parse_element(element) case element when PartName o = Part.new @parts << o o when DocumentationName o = Documentation.new o else nil end end
# File lib/wsdl/message.rb, line 25 def targetnamespace parent.targetnamespace end
[Validate]
Generated with the Darkfish Rdoc Generator 2.