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-10.6.1 lib/mpxj/relation.rb
mpxj-10.6.0 lib/mpxj/relation.rb
mpxj-10.5.0 lib/mpxj/relation.rb
mpxj-10.4.0 lib/mpxj/relation.rb
mpxj-10.3.0 lib/mpxj/relation.rb
mpxj-10.2.0 lib/mpxj/relation.rb
mpxj-10.1.0 lib/mpxj/relation.rb
mpxj-10.0.5 lib/mpxj/relation.rb
mpxj-10.0.4 lib/mpxj/relation.rb
mpxj-10.0.3 lib/mpxj/relation.rb
mpxj-10.0.2 lib/mpxj/relation.rb
mpxj-10.0.1 lib/mpxj/relation.rb
mpxj-10.0.0 lib/mpxj/relation.rb
mpxj-9.8.3 lib/mpxj/relation.rb
mpxj-9.8.2 lib/mpxj/relation.rb
mpxj-9.8.1 lib/mpxj/relation.rb
mpxj-9.8.0 lib/mpxj/relation.rb
mpxj-9.7.0 lib/mpxj/relation.rb
mpxj-9.6.0 lib/mpxj/relation.rb
mpxj-9.5.2 lib/mpxj/relation.rb