Class: Projects::Model::Buglog
Overview
-
This class is used to make an object for Buglog.
Instance Method Summary collapse
-
#getBugId ⇒ Object
-
Get the bug id.
-
-
#getTitle ⇒ Object
-
Get the title of the bug.
-
-
#setBugId(bugId) ⇒ Object
-
Set the bug id.
-
-
#setTitle(title) ⇒ Object
-
Set the title of the bug.
-
Methods inherited from Log
#getBillStatus, #getDate, #getHours, #getHoursDisplay, #getId, #getLogDate, #getLogDateFormat, #getLogDateLong, #getMinutes, #getNotes, #getOwnerId, #getOwnerName, #getProjectId, #getProjectName, #getTotalMinutes, #getURL, #setBillStatus, #setDate, #setHours, #setHoursDisplay, #setId, #setLogDate, #setLogDateFormat, #setLogDateLong, #setMinutes, #setNotes, #setOwnerId, #setOwnerName, #setProjectId, #setProjectName, #setTotalMinutes, #setURL, #toParamMAP
Instance Method Details
#getBugId ⇒ Object
-
Get the bug id.
Returns
-
Bug id.
31 32 33 |
# File 'lib/projects/model/Buglog.rb', line 31 def getBugId return @bugId end |
#getTitle ⇒ Object
-
Get the title of the bug.
Returns
-
Title of the bug.
51 52 53 |
# File 'lib/projects/model/Buglog.rb', line 51 def getTitle return @title end |
#setBugId(bugId) ⇒ Object
-
Set the bug id.
Parameters
- bugId
-
ID of the bug.
-
21 22 23 |
# File 'lib/projects/model/Buglog.rb', line 21 def setBugId(bugId) @bugId = bugId end |
#setTitle(title) ⇒ Object
-
Set the title of the bug.
Parameters
- title
-
Title of the bug.
-
41 42 43 |
# File 'lib/projects/model/Buglog.rb', line 41 def setTitle(title) @title = title end |