Sha256: a7f37f29471e8acb4c0ca6b8c4f79da4b437928014656723da32702edd2d024d
Contents?: true
Size: 681 Bytes
Versions: 171
Compression:
Stored size: 681 Bytes
Contents
module Expressir module Model module DataTypes # Specified in ISO 10303-11:2004 # - section 9.5.3.1 Aggregate data type class Aggregate < DataType include Identifier model_attr_accessor :base_type, 'Type' # @param [Hash] options # @option (see Identifier#initialize_identifier) # @option options [Type] :base_type def initialize(options = {}) initialize_identifier(options) @base_type = options[:base_type] super end # @return [Array<Declaration>] def children [ *remark_items ] end end end end end
Version data entries
171 entries across 171 versions & 1 rubygems