Package org.plugtree.training.model

Examples of org.plugtree.training.model.Meeting


        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);

View Full Code Here

TOP

Related Classes of org.plugtree.training.model.Meeting

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.