Sha256: 6c1201ab83e9803045b9849a5fab83a34ef6cad628377eeb4a200666ba590b6e

Contents?: true

Size: 546 Bytes

Versions: 82

Compression:

Stored size: 546 Bytes

Contents

module MPXJ
  # Represents a relationship between two tasks in a project plan
  class Relation < Container
    # Retrieve the Task Unique ID value
    #
    # @return Task Unique ID value
 		def task_unique_id
 			get_integer_value(attribute_values['task_unique_id'])
  	end

    # Retrieve the Lag value
    #
    # @return Lag value
  	def lag
  		get_duration_value(attribute_values['lag'])
  	end

    # Retrieve the Type value
    #
    # @return Type value
  	def type
  		attribute_values['type']
  	end
  end
end

Version data entries

82 entries across 82 versions & 1 rubygems

Version Path
mpxj-13.5.1 lib/mpxj/relation.rb
mpxj-13.5.0 lib/mpxj/relation.rb
mpxj-13.4.1 lib/mpxj/relation.rb
mpxj-13.4.0 lib/mpxj/relation.rb
mpxj-13.3.1 lib/mpxj/relation.rb
mpxj-13.3.0 lib/mpxj/relation.rb
mpxj-13.2.1 lib/mpxj/relation.rb
mpxj-13.2.0 lib/mpxj/relation.rb
mpxj-13.1.0 lib/mpxj/relation.rb
mpxj-13.0.2 lib/mpxj/relation.rb
mpxj-13.0.1 lib/mpxj/relation.rb
mpxj-13.0.0 lib/mpxj/relation.rb
mpxj-12.10.3 lib/mpxj/relation.rb
mpxj-12.10.2 lib/mpxj/relation.rb
mpxj-12.9.3 lib/mpxj/relation.rb
mpxj-12.9.2 lib/mpxj/relation.rb
mpxj-12.9.1 lib/mpxj/relation.rb
mpxj-12.9.0 lib/mpxj/relation.rb
mpxj-12.8.1 lib/mpxj/relation.rb
mpxj-12.8.0 lib/mpxj/relation.rb