Coverage Report - org.kuali.rice.kns.uif.field.BlankField
 
Classes in this File Line Coverage Branch Coverage Complexity
BlankField
0%
0/2
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007 The Kuali Foundation Licensed under the Educational Community
 3  
  * License, Version 1.0 (the "License"); you may not use this file except in
 4  
  * compliance with the License. You may obtain a copy of the License at
 5  
  * http://www.opensource.org/licenses/ecl1.php Unless required by applicable law
 6  
  * or agreed to in writing, software distributed under the License is
 7  
  * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 8  
  * KIND, either express or implied. See the License for the specific language
 9  
  * governing permissions and limitations under the License.
 10  
  */
 11  
 package org.kuali.rice.kns.uif.field;
 12  
 
 13  
 /**
 14  
  * Field that produces only a space
 15  
  * 
 16  
  * <p>
 17  
  * Can be used to aid in the layout of other fields, for instance in a grid. For
 18  
  * example in a totals row generally the rows that are not totaled are blank in
 19  
  * the total row.
 20  
  * </p>
 21  
  * 
 22  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 23  
  */
 24  
 public class BlankField extends FieldBase {
 25  
     private static final long serialVersionUID = -4740343801872334348L;
 26  
 
 27  
     public BlankField() {
 28  0
         super();
 29  0
     }
 30  
 
 31  
 }