In Files

  • wsdl/xmlSchema/simpleContent.rb

Class/Module Index [+]

Quicksearch

WSDL::XMLSchema::SimpleContent

Attributes

extension[R]
restriction[R]

Public Class Methods

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

Public Instance Methods

base() click to toggle source
 
               # File wsdl/xmlSchema/simpleContent.rb, line 31
def base
  content.base
end
            
check_lexical_format(value) click to toggle source
 
               # File wsdl/xmlSchema/simpleContent.rb, line 21
def check_lexical_format(value)
  check(value)
end
            
parse_element(element) click to toggle source
 
               # File wsdl/xmlSchema/simpleContent.rb, line 39
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 wsdl/xmlSchema/simpleContent.rb, line 35
def targetnamespace
  parent.targetnamespace
end