class Projects::Model::Buglog

Attributes

bugId[RW]
title[RW]

Public Instance Methods

getBugId() click to toggle source
  • Get the bug id.

Returns

# File lib/projects/model/Buglog.rb, line 31
def getBugId
        return @bugId
end
getTitle() click to toggle source
  • Get the title of the bug.

Returns

  • Title of the bug.

# File lib/projects/model/Buglog.rb, line 51
def getTitle
        return @title
end
setBugId(bugId) click to toggle source
  • Set the bug id.

Parameters

  • bugId
    • ID of the bug.

# File lib/projects/model/Buglog.rb, line 21
def setBugId(bugId)
        @bugId = bugId
end
setTitle(title) click to toggle source
  • Set the title of the bug.

Parameters

  • title
    • Title of the bug.

# File lib/projects/model/Buglog.rb, line 41
def setTitle(title)
        @title = title
end