Examples of ToDoImpl


Examples of net.sf.pmr.toDo.domain.todo.ToDoImpl

        calendar.set(Calendar.MINUTE, 0);
        calendar.set(Calendar.SECOND, 0);
        calendar.set(Calendar.MILLISECOND, 0);
       
       
        toDoToUpdate = new ToDoImpl();
        toDoToUpdate.setPersistanceId(1);
        toDoToUpdate.setDate(calendar.getTime());
        toDoToUpdate.setProject(projectForUpdate);
        toDoToUpdate.setDescription("préparer une réunion projet");
        toDoToUpdate.setDone(true);
        toDoToUpdate.setOwner(ownerForUpdate);
        toDoToUpdate.setPersistanceVersion(3);
       

        toDoToAdd = new ToDoImpl();
        toDoToAdd.setDate(calendar.getTime());
        toDoToAdd.setProject(projectForAdd);
        toDoToAdd.setDescription("faire le modèle de compte-rendu");
        toDoToAdd.setOwner(ownerForAdd);
        toDoToAdd.setDone(false);
View Full Code Here

Examples of net.sf.pmr.toDo.domain.todo.ToDoImpl

       
        this.mockProjectRepository = mocksControl.createMock(ProjectRepository.class);
       
        this.toDoService = new ToDoServiceImpl(mockToDoRepository, mockUserRepository, mockProjectRepository);
       
        this.toDo = new ToDoImpl();
        this.toDo.setPersistanceId(0);
        this.toDo.setPersistanceVersion(0);
        this.toDo.setDate(new Date());
        this.toDo.setDescription("");
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.