Parent

Files

Class Index [+]

Quicksearch

WSDL::XMLSchema::SimpleExtension

Attributes

base[R]
attributes[R]

Public Class Methods

new() click to toggle source
    # File lib/wsdl/xmlSchema/simpleExtension.rb, line 21
21:   def initialize
22:     super
23:     @base = nil
24:     @attributes = XSD::NamedElements.new
25:   end

Public Instance Methods

parse_attr(attr, value) click to toggle source
    # File lib/wsdl/xmlSchema/simpleExtension.rb, line 52
52:   def parse_attr(attr, value)
53:     case attr
54:     when BaseAttrName
55:       @base = value
56:     end
57:   end
parse_element(element) click to toggle source
    # File lib/wsdl/xmlSchema/simpleExtension.rb, line 35
35:   def parse_element(element)
36:     case element
37:     when AttributeName
38:       o = Attribute.new
39:       @attributes << o
40:       o
41:     when AttributeGroupName
42:       o = AttributeGroup.new
43:       @attributes << o
44:       o
45:     when AnyAttributeName
46:       o = AnyAttribute.new
47:       @attributes << o
48:       o
49:     end
50:   end
targetnamespace() click to toggle source
    # File lib/wsdl/xmlSchema/simpleExtension.rb, line 27
27:   def targetnamespace
28:     parent.targetnamespace
29:   end
valid?(value) click to toggle source
    # File lib/wsdl/xmlSchema/simpleExtension.rb, line 31
31:   def valid?(value)
32:     true
33:   end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.