Coverage Report - org.jtheque.films.controllers.impl.PublicationController
 
Classes in this File Line Coverage Branch Coverage Complexity
PublicationController
0 %
0/2
N/A
1
 
 1  
 package org.jtheque.films.controllers.impl;
 2  
 
 3  
 import org.jtheque.core.managers.view.able.controller.AbstractController;
 4  
 import org.jtheque.films.controllers.able.IPublicationController;
 5  
 import org.jtheque.films.view.able.IPublicationView;
 6  
 
 7  
 import javax.annotation.Resource;
 8  
 
 9  
 /*
 10  
  * This file is part of JTheque.
 11  
  *
 12  
  * JTheque is free software: you can redistribute it and/or modify
 13  
  * it under the terms of the GNU General Public License as published by
 14  
  * the Free Software Foundation, either version 3 of the License.
 15  
  *
 16  
  * JTheque is distributed in the hope that it will be useful,
 17  
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 18  
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 19  
  * GNU General Public License for more details.
 20  
  *
 21  
  * You should have received a copy of the GNU General Public License
 22  
  * along with JTheque.  If not, see <http://www.gnu.org/licenses/>.
 23  
  */
 24  
 
 25  
 /**
 26  
  * @author Baptiste Wicht
 27  
  */
 28  0
 public final class PublicationController extends AbstractController implements IPublicationController {
 29  
     @Resource
 30  
     private IPublicationView publicationView;
 31  
 
 32  
     @Override
 33  
     public IPublicationView getView() {
 34  0
         return publicationView;
 35  
     }
 36  
 }