class Projects::Model::Tasklog

Attributes

taskId[RW]
taskName[RW]

Public Instance Methods

getTaskId() click to toggle source
  • Get the task id.

Returns

  • ID of the task.

# File lib/projects/model/Tasklog.rb, line 31
def getTaskId
        return @taskId
end
getTaskName() click to toggle source
  • Get the task name.

Returns

# File lib/projects/model/Tasklog.rb, line 51
def getTaskName
        return @taskName
end
setTaskId(taskId) click to toggle source
  • Set the task id.

Parameters

  • taskId
    • ID of the task.

# File lib/projects/model/Tasklog.rb, line 21
def setTaskId(taskId)
        @taskId = taskId
end
setTaskName(taskName) click to toggle source
  • Set the task name.

Parameters

  • taskName
    • Name of the task.

# File lib/projects/model/Tasklog.rb, line 41
def setTaskName(taskName)
        @taskName = taskName
end