Class: BuildingSync::ShellGeometry
- Inherits:
-
Object
- Object
- BuildingSync::ShellGeometry
- Defined in:
- lib/BuildingSync.rb
Overview
http://www.gbxml.org/schemaShellGeometry
name - SOAP::SOAPString
description - SOAP::SOAPString
closedShell - BuildingSync::ClosedShell
xmlattr_id - SOAP::SOAPID
xmlattr_unit - SOAP::SOAPNMTOKEN
Constant Summary collapse
- AttrId =
XSD::QName.new(nil, "id")
- AttrUnit =
XSD::QName.new(nil, "unit")
Instance Attribute Summary collapse
-
#closedShell ⇒ Object
Returns the value of attribute closedShell.
-
#description ⇒ Object
Returns the value of attribute description.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
- #__xmlattr ⇒ Object
-
#initialize(name = [], description = [], closedShell = []) ⇒ ShellGeometry
constructor
A new instance of ShellGeometry.
- #xmlattr_id ⇒ Object
- #xmlattr_id=(value) ⇒ Object
- #xmlattr_unit ⇒ Object
- #xmlattr_unit=(value) ⇒ Object
Constructor Details
#initialize(name = [], description = [], closedShell = []) ⇒ ShellGeometry
Returns a new instance of ShellGeometry.
32200 32201 32202 32203 32204 32205 |
# File 'lib/BuildingSync.rb', line 32200 def initialize(name = [], description = [], closedShell = []) @name = name @description = description @closedShell = closedShell @__xmlattr = {} end |
Instance Attribute Details
#closedShell ⇒ Object
Returns the value of attribute closedShell.
32178 32179 32180 |
# File 'lib/BuildingSync.rb', line 32178 def closedShell @closedShell end |
#description ⇒ Object
Returns the value of attribute description.
32177 32178 32179 |
# File 'lib/BuildingSync.rb', line 32177 def description @description end |
#name ⇒ Object
Returns the value of attribute name.
32176 32177 32178 |
# File 'lib/BuildingSync.rb', line 32176 def name @name end |
Instance Method Details
#__xmlattr ⇒ Object
32180 32181 32182 |
# File 'lib/BuildingSync.rb', line 32180 def __xmlattr @__xmlattr ||= {} end |
#xmlattr_id ⇒ Object
32184 32185 32186 |
# File 'lib/BuildingSync.rb', line 32184 def xmlattr_id __xmlattr[AttrId] end |
#xmlattr_id=(value) ⇒ Object
32188 32189 32190 |
# File 'lib/BuildingSync.rb', line 32188 def xmlattr_id=(value) __xmlattr[AttrId] = value end |
#xmlattr_unit ⇒ Object
32192 32193 32194 |
# File 'lib/BuildingSync.rb', line 32192 def xmlattr_unit __xmlattr[AttrUnit] end |
#xmlattr_unit=(value) ⇒ Object
32196 32197 32198 |
# File 'lib/BuildingSync.rb', line 32196 def xmlattr_unit=(value) __xmlattr[AttrUnit] = value end |