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 20
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 34
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 30
def parse_element(element)
  nil
end
targetnamespace() click to toggle source
# File lib/wsdl/xmlSchema/anyAttribute.rb, line 26
def targetnamespace
  parent.targetnamespace
end