class Projects::Model::Timelog

Attributes

buglogs[RW]
dateLong[RW]
displayFormat[RW]
generallogs[RW]
tasklogs[RW]
totalHours[RW]

Public Instance Methods

getBuglogs() click to toggle source
  • Get the bug logs.

Returns

# File lib/projects/model/Timelog.rb, line 89
def getBuglogs
        return @buglogs
end
getDateLong() click to toggle source
  • Get the date long of the time log.

Returns

  • date of the time log.

# File lib/projects/model/Timelog.rb, line 29
def getDateLong
        return @dateLong
end
getDisplayFormat() click to toggle source
  • Get the display format of the date.

Returns

  • display format of the date.

# File lib/projects/model/Timelog.rb, line 49
def getDisplayFormat
        return @displayFormat
end
getGenerallogs() click to toggle source
  • Get the general logs.

Returns

# File lib/projects/model/Timelog.rb, line 129
def getGenerallogs
        return @generallogs
end
getTasklogs() click to toggle source
  • Get the task logs.

Returns

# File lib/projects/model/Timelog.rb, line 109
def getTasklogs
        return @tasklogs
end
getTotalHours() click to toggle source
  • Get the total hours of the time log.

Returns

  • total hours of the time log.

# File lib/projects/model/Timelog.rb, line 69
def getTotalHours
        return @totalHours
end
setBuglogs(buglogs) click to toggle source
  • Set the bug logs.

Parameters

  • buglogs
# File lib/projects/model/Timelog.rb, line 79
def setBuglogs(buglogs)
        @buglogs = buglogs
end
setDateLong(dateLong) click to toggle source
  • Set the date for the time log.

Parameters

  • dateLong
    • Date for the time log.

# File lib/projects/model/Timelog.rb, line 19
def setDateLong(dateLong)
        @dateLong = dateLong
end
setDisplayFormat(displayFormat) click to toggle source
  • Set the display format for the date.

Parameters

  • displayFormat
    • Display format for the date.

# File lib/projects/model/Timelog.rb, line 39
def setDisplayFormat(displayFormat)
        @displayFormat = displayFormat
end
setGenerallogs(generallogs) click to toggle source
  • Set the general logs.

Parameters

# File lib/projects/model/Timelog.rb, line 119
def setGenerallogs(generallogs)
        @generallogs = generallogs
end
setTasklogs(tasklogs) click to toggle source
  • Set the task logs.

Parameters

# File lib/projects/model/Timelog.rb, line 99
def setTasklogs(tasklogs)
        @tasklogs = tasklogs
end
setTotalHours(totalHours) click to toggle source
  • Set the total hours for the time log.

Parameters

  • totalHours
    • Total hours for the time log.

# File lib/projects/model/Timelog.rb, line 59
def setTotalHours(totalHours)
        @totalHours = totalHours
end