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-12.7.0 lib/mpxj/relation.rb
mpxj-12.6.0 lib/mpxj/relation.rb
mpxj-12.5.0 lib/mpxj/relation.rb
mpxj-12.4.0 lib/mpxj/relation.rb
mpxj-12.3.0 lib/mpxj/relation.rb
mpxj-12.2.0 lib/mpxj/relation.rb
mpxj-12.1.3 lib/mpxj/relation.rb
mpxj-12.1.2 lib/mpxj/relation.rb
mpxj-12.1.1 lib/mpxj/relation.rb
mpxj-12.1.0 lib/mpxj/relation.rb
mpxj-12.0.2 lib/mpxj/relation.rb
mpxj-12.0.1 lib/mpxj/relation.rb
mpxj-12.0.0 lib/mpxj/relation.rb
mpxj-11.5.4 lib/mpxj/relation.rb
mpxj-11.5.3 lib/mpxj/relation.rb
mpxj-11.5.2 lib/mpxj/relation.rb
mpxj-11.5.1 lib/mpxj/relation.rb
mpxj-11.5.0 lib/mpxj/relation.rb
mpxj-11.4.0 lib/mpxj/relation.rb
mpxj-11.3.2 lib/mpxj/relation.rb