Sha256: 9c1c9a48c51f9e95017c746af8d81c8fc86a7a958d9e3da2d9302e6072f14c8c
Contents?: true
Size: 595 Bytes
Versions: 13
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
13 entries across 13 versions & 1 rubygems