Class: Expressir::Model::DataTypes::Set
- Inherits:
-
Expressir::Model::DataType
- Object
- ModelElement
- Expressir::Model::DataType
- Expressir::Model::DataTypes::Set
- Defined in:
- lib/expressir/model/data_types/set.rb
Overview
Specified in ISO 10303-11:2004
-
section 8.2.4 Set data type
Instance Attribute Summary collapse
Attributes inherited from ModelElement
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Set
constructor
A new instance of Set.
Methods inherited from ModelElement
#children, #children_by_id, #find, from_hash, model_attr_accessor, model_attrs, #path, #reset_children_by_id, #to_hash, #to_liquid, #to_s
Constructor Details
#initialize(options = {}) ⇒ Set
Returns a new instance of Set.
15 16 17 18 19 20 21 |
# File 'lib/expressir/model/data_types/set.rb', line 15 def initialize( = {}) @bound1 = [:bound1] @bound2 = [:bound2] @base_type = [:base_type] super end |
Instance Attribute Details
#base_type ⇒ DataType
9 |
# File 'lib/expressir/model/data_types/set.rb', line 9 model_attr_accessor :base_type, 'DataType' |
#bound1 ⇒ Expression
7 |
# File 'lib/expressir/model/data_types/set.rb', line 7 model_attr_accessor :bound1, 'Expression' |
#bound2 ⇒ Expression
8 |
# File 'lib/expressir/model/data_types/set.rb', line 8 model_attr_accessor :bound2, 'Expression' |