class Projects::Model::Owner

Attributes

id[RW]
name[RW]

Public Instance Methods

getId() click to toggle source
  • Get the owner id.

Returns

# File lib/projects/model/Owner.rb, line 49
def getId
        return @id
end
getName() click to toggle source
  • Get the owner name.

Returns

# File lib/projects/model/Owner.rb, line 29
def getName
        return @name
end
setId(id) click to toggle source
  • Set the owner id.

Parameters

  • id
    • ID of the owner.

# File lib/projects/model/Owner.rb, line 39
def setId(id)
        @id = id
end
setName(name) click to toggle source
  • Set the owner name.

Parameters

  • name
    • Name of the owner.

# File lib/projects/model/Owner.rb, line 19
def setName(name)
        @name = name
end