class WSDL::XMLSchema::AnyAttribute
Attributes
namespace[RW]
processcontents[RW]
Public Class Methods
new()
click to toggle source
Calls superclass method
WSDL::Info::new
# File lib/wsdl/xmlSchema/anyAttribute.rb, line 21 def initialize super() @namespace = '##any' @processcontents = 'strict' end
Public Instance Methods
parse_attr(attr, value)
click to toggle source
# File lib/wsdl/xmlSchema/anyAttribute.rb, line 35 def parse_attr(attr, value) case attr when NamespaceAttrName @namespace = value.source when ProcessContentsAttrName @processcontents = value.source else nil end end
parse_element(element)
click to toggle source
# File lib/wsdl/xmlSchema/anyAttribute.rb, line 31 def parse_element(element) nil end
targetnamespace()
click to toggle source
# File lib/wsdl/xmlSchema/anyAttribute.rb, line 27 def targetnamespace parent.targetnamespace end