Package model

Examples of model.Lva


        notificator.removeObserver(obs);
    }

    public void testCondition() throws Exception {
        Lva l1 = new Lva(100, "STEG Condition", tomorrow, tomorrow, today, tomorrow, tomorrow, lect1, 1, "STEOP", "STEG", null, 1, new ArrayList<Exam>(), new ArrayList<PracticeGroup>(), new ArrayList<Interview>(), new ArrayList<User>());
        Lva l2 = new Lva(101, "STEG Fullfillment", tomorrow, tomorrow, today, tomorrow, tomorrow, lect1, 1, "STEG", null, null, 1, new ArrayList<Exam>(), new ArrayList<PracticeGroup>(), new ArrayList<Interview>(), new ArrayList<User>());
       
        lvaService.saveAppointment(l1, lect1);
        lvaService.saveAppointment(l2, lect1);
       
        try{
View Full Code Here


        Date tomorrow = new Date(new Date().getTime() + 1000 * 60 * 60 * 24);
        Date endAppointment = new Date(new Date().getTime() + 1000 * 60 * 60 * 24 * 365);

        Lecturer lect1 = new Lecturer("Heinz", "Huber");

        Lva lva1 = new Lva(1, "OOP", today, endAppointment, yesterday, yesterday, tomorrow, lect1, 5, null, null, null, 1, new ArrayList<Exam>(), new ArrayList<PracticeGroup>(), new ArrayList<Interview>(), Arrays.asList((User) lect1));
        Student s1 = new Student(1025748, "Florian", "Zaruba");

        ratingService.rate(lect1, s1, lva1, Grade.A);

        try {
View Full Code Here

TOP

Related Classes of model.Lva

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.