Class: WsdlMapper::Dom::Property::Ref
- Defined in:
- lib/wsdl_mapper/dom/property.rb
Instance Attribute Summary collapse
-
#bounds ⇒ Object
readonly
Returns the value of attribute bounds.
-
#containing_type ⇒ Object
Returns the value of attribute containing_type.
-
#default ⇒ Object
readonly
Returns the value of attribute default.
-
#fixed ⇒ Object
readonly
Returns the value of attribute fixed.
-
#form ⇒ Object
readonly
Returns the value of attribute form.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#sequence ⇒ Object
readonly
Returns the value of attribute sequence.
Attributes inherited from TypeBase
Instance Method Summary collapse
-
#initialize(name, bounds: Bounds.new, sequence: 0, default: nil, fixed: nil, form: nil) ⇒ Ref
constructor
A new instance of Ref.
Methods inherited from TypeBase
Constructor Details
#initialize(name, bounds: Bounds.new, sequence: 0, default: nil, fixed: nil, form: nil) ⇒ Ref
Returns a new instance of Ref.
10 11 12 13 14 15 16 |
# File 'lib/wsdl_mapper/dom/property.rb', line 10 def initialize(name, bounds: Bounds.new, sequence: 0, default: nil, fixed: nil, form: nil) super name @name, @bounds, @sequence = name, bounds, sequence @default = default @fixed = fixed @form = form end |
Instance Attribute Details
#bounds ⇒ Object (readonly)
Returns the value of attribute bounds.
8 9 10 |
# File 'lib/wsdl_mapper/dom/property.rb', line 8 def bounds @bounds end |
#containing_type ⇒ Object
Returns the value of attribute containing_type.
7 8 9 |
# File 'lib/wsdl_mapper/dom/property.rb', line 7 def containing_type @containing_type end |
#default ⇒ Object (readonly)
Returns the value of attribute default.
8 9 10 |
# File 'lib/wsdl_mapper/dom/property.rb', line 8 def default @default end |
#fixed ⇒ Object (readonly)
Returns the value of attribute fixed.
8 9 10 |
# File 'lib/wsdl_mapper/dom/property.rb', line 8 def fixed @fixed end |
#form ⇒ Object (readonly)
Returns the value of attribute form.
8 9 10 |
# File 'lib/wsdl_mapper/dom/property.rb', line 8 def form @form end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
8 9 10 |
# File 'lib/wsdl_mapper/dom/property.rb', line 8 def name @name end |
#sequence ⇒ Object (readonly)
Returns the value of attribute sequence.
8 9 10 |
# File 'lib/wsdl_mapper/dom/property.rb', line 8 def sequence @sequence end |