Class: Expressir::Model::SupertypeExpressions::OneofSupertypeExpression

Inherits:
Expressir::Model::SupertypeExpression show all
Defined in:
lib/expressir/model/supertype_expressions/oneof_supertype_expression.rb

Overview

Specified in ISO 10303-11:2004

  • section 9.2.5.2 ONEOF

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, #to_liquid, #to_s

Constructor Details

#initialize(options = {}) ⇒ OneofSupertypeExpression

Returns a new instance of OneofSupertypeExpression.

Parameters:

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

Options Hash (options):



11
12
13
14
15
# File 'lib/expressir/model/supertype_expressions/oneof_supertype_expression.rb', line 11

def initialize(options = {})
  @operands = options[:operands]

  super
end

Instance Attribute Details

#operandsArray<SupertypeExpression>

Returns:



7
# File 'lib/expressir/model/supertype_expressions/oneof_supertype_expression.rb', line 7

model_attr_accessor :operands, 'Array<SupertypeExpression>'