Coverage Report - org.kuali.rice.core.framework.persistence.ojb.conversion.OjbCharBooleanConversionTF
 
Classes in this File Line Coverage Branch Coverage Complexity
OjbCharBooleanConversionTF
0%
0/4
N/A
1
 
 1  
 
 2  
 
 3  
 /*
 4  
  * Copyright 2005-2008 The Kuali Foundation
 5  
  * 
 6  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 7  
  * you may not use this file except in compliance with the License.
 8  
  * You may obtain a copy of the License at
 9  
  * 
 10  
  * http://www.opensource.org/licenses/ecl2.php
 11  
  * 
 12  
  * Unless required by applicable law or agreed to in writing, software
 13  
  * distributed under the License is distributed on an "AS IS" BASIS,
 14  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 15  
  * See the License for the specific language governing permissions and
 16  
  * limitations under the License.
 17  
  */
 18  
 package org.kuali.rice.core.framework.persistence.ojb.conversion;
 19  
 
 20  
 /**
 21  
  * This class converts the "T" or "F" value from the database into a true or false in Java.
 22  
  * 
 23  
  * 
 24  
  */
 25  
 public final class OjbCharBooleanConversionTF extends OjbCharBooleanConversionBase {
 26  
     public OjbCharBooleanConversionTF() {
 27  0
         super();
 28  0
     }
 29  
 
 30  
     protected String getTrueValue() {
 31  0
         return "T";
 32  
     }
 33  
 
 34  
     protected String getFalseValue() {
 35  0
         return "F";
 36  
     }
 37  
 }