class WSDL::XMLSchema::Include
Public Class Methods
new()
click to toggle source
Calls superclass method
WSDL::Info::new
# File lib/wsdl/xmlSchema/include.rb, line 19 def initialize super @handler = ImportHandler.new end
Public Instance Methods
content()
click to toggle source
# File lib/wsdl/xmlSchema/include.rb, line 28 def content @handler.content end
parse_attr(attr, value)
click to toggle source
# File lib/wsdl/xmlSchema/include.rb, line 36 def parse_attr(attr, value) case attr when SchemaLocationAttrName @handler.parse_schemalocation(value.source, root, parent) else nil end end
parse_element(element)
click to toggle source
# File lib/wsdl/xmlSchema/include.rb, line 32 def parse_element(element) nil end
schemalocation()
click to toggle source
# File lib/wsdl/xmlSchema/include.rb, line 24 def schemalocation @handler.schemalocation end