class Projects::Model::TimelogList

Attributes

grandtotal[RW]
role[RW]

Public Instance Methods

getGrandtotal() click to toggle source
  • Get the grand total of the time log.

Returns

  • The grand total of the timelog.

# File lib/projects/model/TimelogList.rb, line 29
def getGrandtotal
        return grandtotal
end
getRole() click to toggle source
  • Get the time log role.

Returns

  • The time log role.

# File lib/projects/model/TimelogList.rb, line 49
def getRole
        return @role
end
setGrandtotal(grandtotal) click to toggle source
  • Set the grand total of the time log.

Parameters

  • grandtotal
    • Grand total of the time log.

# File lib/projects/model/TimelogList.rb, line 19
def setGrandtotal(grandtotal)
        @grandtotal = grandtotal
end
setRole(role) click to toggle source
  • Set the time log role.

Parameters

  • role
    • Role for the time log.

# File lib/projects/model/TimelogList.rb, line 39
def setRole(role)
        @role = role
end