Employee paul = new Employee("Paul", "Stewart");
Employee peter = new Employee("Peter", "Corning");
Employee michael = new Employee("Michael", "Williams");
//a 2 hours meeting is created
Meeting meeting = new Meeting("Some important meeting",2*60*60*1000);
meeting.addParticipant(john);
meeting.addParticipant(paul);
meeting.addParticipant(peter);
//the meeting is started
MeetingStartEvent meetingEvent = new MeetingStartEvent(meeting);
meetingsEP.insert(meetingEvent);