Class: XSD::Choice
- Inherits:
-
BaseObject
- Object
- BaseObject
- XSD::Choice
- Includes:
- ElementContainer, MinMaxOccurs
- Defined in:
- lib/xsd/objects/choice.rb
Overview
XML Schema choice element allows only one of the elements contained in the <choice> declaration to be present within the containing element. Parent elements: group, choice, sequence, complexType, restriction (both simpleContent and complexContent), extension (both simpleContent and complexContent) www.w3schools.com/xml/el_choice.asp
Constant Summary
Constants inherited from BaseObject
BaseObject::NO_ATTRIBUTES_CONTAINER, BaseObject::NO_ELEMENTS_CONTAINER, BaseObject::XML_SCHEMA
Instance Attribute Summary collapse
-
#anys ⇒ Object
Nested anys.
-
#choices ⇒ Object
Nested choices.
-
#groups ⇒ Object
Nested groups.
-
#sequences ⇒ Object
Nested sequences.
Attributes included from ElementContainer
Attributes included from MinMaxOccurs
Attributes inherited from BaseObject
Method Summary
Methods included from ElementContainer
Methods included from MinMaxOccurs
#computed_max_occurs, #computed_min_occurs, included, #multiple?, #multiple_allowed?
Methods inherited from BaseObject
#[], #collect_attributes, #collect_elements, #documentation, #documentation_for, #get_prefix, #initialize, #inspect, #map_child, #map_children, #namespaces, #node, #node_to_object, #nodes, #object_by_name, #parent, #reader, #schema, #schemas_for_namespace, #strip_prefix
Constructor Details
This class inherits a constructor from XSD::BaseObject
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class XSD::BaseObject
Instance Attribute Details
#anys ⇒ Object
Nested anys
31 |
# File 'lib/xsd/objects/choice.rb', line 31 child :anys, [:any] |
#choices ⇒ Object
Nested choices
21 |
# File 'lib/xsd/objects/choice.rb', line 21 child :choices, [:choice] |
#groups ⇒ Object
Nested groups
16 |
# File 'lib/xsd/objects/choice.rb', line 16 child :groups, [:group] |
#sequences ⇒ Object
Nested sequences
26 |
# File 'lib/xsd/objects/choice.rb', line 26 child :sequences, [:sequence] |