Sha256: 78baee57e93a5b99f2fb7634fc2ddafbae9962d3da7a456dd280431024dbbe17
Contents?: true
Size: 780 Bytes
Versions: 171
Compression:
Stored size: 780 Bytes
Contents
module Expressir module Model module Declarations # Specified in ISO 10303-11:2004 # - section 9.5.3 Parameters class Parameter < Declaration include Identifier model_attr_accessor :var, 'Boolean' model_attr_accessor :type, 'DataType' # @param [Hash] options # @option (see Identifier#initialize_identifier) # @option options [Boolean] :var # @option options [DataType] :type def initialize(options = {}) initialize_identifier(options) @var = options[:var] @type = options[: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