class Projects::Model::Participant

Attributes

participantId[RW]
participantPerson[RW]

Public Instance Methods

getParticipantId() click to toggle source
  • Get the participant id.

Returns

# File lib/projects/model/Participant.rb, line 29
def getParticipantId
        return @participantId
end
getParticipantPerson() click to toggle source
  • Get the participant name.

Returns

# File lib/projects/model/Participant.rb, line 49
def getParticipantPerson
        return @participantPerson
end
setParticipantId(participantId) click to toggle source
  • Set the participant id.

Parameters

  • participantId
    • ID of the participant.

# File lib/projects/model/Participant.rb, line 19
def setParticipantId(participantId)
        @participantId = participantId
end
setParticipantPerson(participantPerson) click to toggle source
  • Set the participant name.

Parameters

  • participantPerson
    • Name of the participant.

# File lib/projects/model/Participant.rb, line 39
def setParticipantPerson(participantPerson)
        @participantPerson = participantPerson
end