Parent

Files

Class/Module Index [+]

Quicksearch

WSDL::XMLSchema::SimpleContent

Attributes

extension[R]
restriction[R]

Public Class Methods

new() click to toggle source
# File lib/wsdl/xmlSchema/simpleContent.rb, line 25
def initialize
  super
  @restriction = nil
  @extension = nil
end

Public Instance Methods

attributes() click to toggle source
# File lib/wsdl/xmlSchema/simpleContent.rb, line 35
def attributes
  content.attributes
end
base() click to toggle source
# File lib/wsdl/xmlSchema/simpleContent.rb, line 31
def base
  content.base
end
check_lexical_format(value) click to toggle source
# File lib/wsdl/xmlSchema/simpleContent.rb, line 21
def check_lexical_format(value)
  check(value)
end
parse_element(element) click to toggle source
# File lib/wsdl/xmlSchema/simpleContent.rb, line 43
def parse_element(element)
  case element
  when RestrictionName
    @restriction = SimpleRestriction.new
    @restriction
  when ExtensionName
    @extension = SimpleExtension.new
    @extension
  end
end
targetnamespace() click to toggle source
# File lib/wsdl/xmlSchema/simpleContent.rb, line 39
def targetnamespace
  parent.targetnamespace
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.