# File lib/wsdl/xmlSchema/attributeGroup.rb, line 19 19: def attr_reader_ref(symbol) 20: name = symbol.to_s 21: define_method(name) { 22: instance_variable_get("@#{name}") || 23: (refelement ? refelement.__send__(name) : nil) 24: } 25: end
# File lib/wsdl/xmlSchema/attributeGroup.rb, line 72 72: def parse_attr(attr, value) 73: case attr 74: when NameAttrName 75: @name = XSD::QName.new(targetnamespace, value.source) 76: when RefAttrName 77: @ref = value 78: else 79: nil 80: end 81: end
# File lib/wsdl/xmlSchema/attributeGroup.rb, line 62 62: def parse_element(element) 63: case element 64: when AttributeName 65: @attributes ||= XSD::NamedElements.new 66: o = Attribute.new 67: @attributes << o 68: o 69: end 70: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.