Class: Expressir::Model::DataTypes::List

Inherits:
Expressir::Model::DataType show all
Defined in:
lib/expressir/model/data_types/list.rb

Overview

Specified in ISO 10303-11:2004

  • section 8.2.2 List data type

Instance Attribute Summary collapse

Attributes inherited from ModelElement

#parent

Instance Method Summary collapse

Methods inherited from ModelElement

#children, #children_by_id, #find, from_hash, model_attr_accessor, model_attrs, #path, #reset_children_by_id, #to_hash

Constructor Details

#initialize(options = {}) ⇒ List

Returns a new instance of List.

Parameters:

  • options (Hash) (defaults to: {})

Options Hash (options):



17
18
19
20
21
22
23
24
# File 'lib/expressir/model/data_types/list.rb', line 17

def initialize(options = {})
  @bound1 = options[:bound1]
  @bound2 = options[:bound2]
  @unique = options[:unique]
  @base_type = options[:base_type]

  super
end

Instance Attribute Details

#base_typeDataType

Returns:



10
# File 'lib/expressir/model/data_types/list.rb', line 10

model_attr_accessor :base_type, 'DataType'

#bound1Expression

Returns:



7
# File 'lib/expressir/model/data_types/list.rb', line 7

model_attr_accessor :bound1, 'Expression'

#bound2Expression

Returns:



8
# File 'lib/expressir/model/data_types/list.rb', line 8

model_attr_accessor :bound2, 'Expression'

#unique::Boolean

Returns:

  • (::Boolean)


9
# File 'lib/expressir/model/data_types/list.rb', line 9

model_attr_accessor :unique, '::Boolean'