# PLEASE DO NOT EDIT THIS CODE
# This code was generated using the UMPLE 1.35.0.7523.c616a4dce modeling language!
# NOTE: Ruby generator is experimental and is missing some features available in
# in other Umple generated languages like Java or PHP
module Example
class Mentor
#------------------------
# MEMBER VARIABLES
#------------------------
#Mentor Attributes - for documentation purposes
#attr_reader :name
#Mentor Associations - for documentation purposes
#attr_reader :students
#------------------------
# CONSTRUCTOR
#------------------------
def initialize(a_name)
@initialized = false
@deleted = false
@name = a_name
@students = []
@initialized = true
end
#------------------------
# INTERFACE
#------------------------
def set_name(a_name)
was_set = false
@name = a_name
was_set = true
was_set
end
def get_name
@name
end
def get_student(index)
a_student = @students[index]
a_student
end
def get_students
new_students = @students.dup
new_students
end
def number_of_students
number = @students.size
number
end
def has_students
has = @students.size > 0
has
end
def index_of_student(a_student)
index = @students.index(a_student)
index = -1 if index.nil?
index
end
def self.minimum_number_of_students
0
end
def add_student(a_student)
was_added = false
return false if index_of_student(a_student) != -1
existing_mentor = a_student.get_mentor
is_new_mentor = (!existing_mentor.nil? and !existing_mentor.eql?(self))
if is_new_mentor
a_student.set_mentor(self)
else
@students << a_student
end
was_added = true
was_added
end
def remove_student(a_student)
was_removed = false
# Unable to remove a_student, as it must always have a mentor
unless a_student.get_mentor.eql?(self)
@students.delete(a_student)
was_removed = true
end
was_removed
end
def add_student_at(a_student, index)
was_added = false
if add_student(a_student)
if(index < 0)
index = 0
end
if(index > number_of_students())
index = number_of_students() - 1
end
@students.delete(a_student)
@students.insert(index, a_student)
was_added = true
end
was_added
end
def add_or_move_student_at(a_student, index)
was_added = false
if @students.include?(a_student)
if(index < 0)
index = 0
end
if(index > number_of_students())
index = number_of_students() - 1
end
@students.delete(a_student)
@students.insert(index, a_student)
was_added = true
else
was_added = add_student_at(a_student, index)
end
was_added
end
def delete
@deleted = true
@students.each do |a_student|
a_student.delete
end
end
end
end
# PLEASE DO NOT EDIT THIS CODE
# This code was generated using the UMPLE 1.35.0.7523.c616a4dce modeling language!
# NOTE: Ruby generator is experimental and is missing some features available in
# in other Umple generated languages like Java or PHP
module Example
class Student
#------------------------
# MEMBER VARIABLES
#------------------------
#Student Attributes - for documentation purposes
#attr_reader :number
#Student Associations - for documentation purposes
#attr_reader :mentor
#------------------------
# CONSTRUCTOR
#------------------------
def initialize(a_number, a_mentor)
@initialized = false
@deleted = false
@number = a_number
@mentor = nil
did_add_mentor = set_mentor(a_mentor)
raise "Unable to create student due to @mentor. See https://manual.umple.org?RE002ViolationofAssociationMultiplicity.html" unless did_add_mentor
@initialized = true
end
#------------------------
# INTERFACE
#------------------------
def set_number(a_number)
was_set = false
@number = a_number
was_set = true
was_set
end
def get_number
@number
end
def get_mentor
@mentor
end
def set_mentor(a_mentor)
was_set = false
if a_mentor.nil?
return was_set
end
existing_mentor = @mentor
@mentor = a_mentor
if !existing_mentor.nil? and !existing_mentor.eql?(a_mentor)
existing_mentor.remove_student(self)
end
@mentor.add_student(self)
was_set = true
was_set
end
def delete
@deleted = true
@placeholder_mentor = @mentor
@mentor = nil
@placeholder_mentor.remove_student(self)
end
end
end