| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| GenericDataDeletedEdit |
|
| 1.0;1 |
| 1 | package org.jtheque.primary.controller.impl.undo; | |
| 2 | ||
| 3 | /* | |
| 4 | * This file is part of JTheque. | |
| 5 | * | |
| 6 | * JTheque is free software: you can redistribute it and/or modify | |
| 7 | * it under the terms of the GNU General Public License as published by | |
| 8 | * the Free Software Foundation, either version 3 of the License. | |
| 9 | * | |
| 10 | * JTheque is distributed in the hope that it will be useful, | |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 | * GNU General Public License for more details. | |
| 14 | * | |
| 15 | * You should have received a copy of the GNU General Public License | |
| 16 | * along with JTheque. If not, see <http://www.gnu.org/licenses/>. | |
| 17 | */ | |
| 18 | ||
| 19 | import org.jtheque.core.managers.persistence.able.Entity; | |
| 20 | import org.jtheque.core.utils.CoreUtils; | |
| 21 | import org.jtheque.primary.services.able.DataService; | |
| 22 | ||
| 23 | import javax.swing.undo.AbstractUndoableEdit; | |
| 24 | ||
| 25 | /** | |
| 26 | * An edit corresponding to a delete of a film. | |
| 27 | * | |
| 28 | * @author Baptiste Wicht | |
| 29 | */ | |
| 30 | public final class GenericDataDeletedEdit<T extends Entity> extends AbstractUndoableEdit { | |
| 31 | private final T movie; | |
| 32 | private final String dataService; | |
| 33 | ||
| 34 | /** | |
| 35 | * Construct a new DeletedFilmEdit. | |
| 36 | * | |
| 37 | * @param dataService The data service to use. | |
| 38 | * @param movie The deleted movie. | |
| 39 | */ | |
| 40 | public GenericDataDeletedEdit(String dataService, T movie){ | |
| 41 | 0 | super(); |
| 42 | ||
| 43 | 0 | this.dataService = dataService; |
| 44 | 0 | this.movie = movie; |
| 45 | 0 | } |
| 46 | ||
| 47 | @Override | |
| 48 | public void undo(){ | |
| 49 | 0 | super.undo(); |
| 50 | ||
| 51 | 0 | CoreUtils.<DataService<T>>getBean(dataService).create(movie); |
| 52 | 0 | } |
| 53 | ||
| 54 | @Override | |
| 55 | public void redo(){ | |
| 56 | 0 | super.redo(); |
| 57 | ||
| 58 | 0 | CoreUtils.<DataService<T>>getBean(dataService).delete(movie); |
| 59 | 0 | } |
| 60 | ||
| 61 | @Override | |
| 62 | public String getPresentationName(){ | |
| 63 | 0 | return CoreUtils.getMessage("undo.edits.delete"); |
| 64 | } | |
| 65 | } |