Sha256: 116a660215c5be690c50c0c18ca53f5fd9440e4c913b139ac9681a67ab7749b4
Contents?: true
Size: 572 Bytes
Versions: 171
Compression:
Stored size: 572 Bytes
Contents
module Expressir module Model module References # Specified in ISO 10303-11:2004 # - section 12.7.3 Attribute references class AttributeReference < Reference model_attr_accessor :ref, 'Reference' model_attr_accessor :attribute, 'Reference' # @param [Hash] options # @option options [Reference] :ref # @option options [Reference] :attribute def initialize(options = {}) @ref = options[:ref] @attribute = options[:attribute] super end end end end end
Version data entries
171 entries across 171 versions & 1 rubygems