Sha256: 1c9f3dd9cd13c6ae2f9fe1302d2970229ea100ccef5a31c581c5c23eb9c5a26f
Contents?: true
Size: 595 Bytes
Versions: 169
Compression:
Stored size: 595 Bytes
Contents
module Expressir module Model module Declarations # Specified in ISO 10303-11:2004 # - section 11 Interface specification class InterfaceItem < ModelElement model_attr_accessor :ref, 'Reference' model_attr_accessor :id, 'String' # @param [Hash] options # @option (see Identifier#initialize_identifier) # @option options [Reference] :ref # @option options [String] :id def initialize(options = {}) @ref = options[:ref] @id = options[:id] super end end end end end
Version data entries
169 entries across 169 versions & 1 rubygems