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