Coverage Report - org.kuali.student.common.ui.client.configurable.mvc.layouts.BasicLayout
 
Classes in this File Line Coverage Branch Coverage Complexity
BasicLayout
0%
0/10
N/A
1
 
 1  
 package org.kuali.student.common.ui.client.configurable.mvc.layouts;
 2  
 
 3  
 import org.kuali.student.common.ui.client.configurable.mvc.LayoutController;
 4  
 import org.kuali.student.common.ui.client.mvc.View;
 5  
 
 6  
 import com.google.gwt.user.client.ui.FlowPanel;
 7  
 
 8  
 /**
 9  
  * The most basic implementation of a LayoutController, no navigation, all showView calls must be invoked
 10  
  * by the app.
 11  
  * 
 12  
  * @author Kuali Student Team
 13  
  *
 14  
  */
 15  
 public class BasicLayout extends LayoutController{
 16  0
         private FlowPanel viewContainer = new FlowPanel();
 17  
 
 18  
         public BasicLayout(String controllerId) {
 19  0
                 super();
 20  0
                 this.initWidget(viewContainer);
 21  0
         }
 22  
 
 23  
         @Override
 24  
         protected void hideView(View view) {
 25  0
                 viewContainer.clear();
 26  0
         }
 27  
 
 28  
         @Override
 29  
         protected void renderView(View view) {
 30  0
                 viewContainer.add(view.asWidget());
 31  0
         }
 32  
 
 33  
         /** 
 34  
          * This version of updateModel only updates from the currentView (since only one view is shown/accessed at a time).  
 35  
          * Call updateModelFromView to update from a specific view under this controller's scope.
 36  
          */
 37  
         @Override
 38  
         public void updateModel() {
 39  0
                 this.updateModelFromCurrentView();
 40  0
         }
 41  
 }