Sha256: 347f669ec3f7f7eb37e5087711d38adf1895fbb0bf0032185bce79ce0da51e95
Contents?: true
Size: 623 Bytes
Versions: 86
Compression:
Stored size: 623 Bytes
Contents
module MPXJ # Represents a relationship between a task and a resource in a project plan class Assignment < Container include MPXJ::AssignmentMethods # Retrieve the task associated with this assignment # # @return [Task] the task associated with this assignment. def task parent_project.get_task_by_unique_id(task_unique_id) end # Retrieve the resource associated with this assignment # # @return [Resource] the resource associated with this assignment. def resource parent_project.get_resource_by_unique_id(resource_unique_id) end end end
Version data entries
86 entries across 86 versions & 1 rubygems