Coverage Report - org.kuali.rice.core.jpa.metadata.ManyToOneDescriptor
 
Classes in this File Line Coverage Branch Coverage Complexity
ManyToOneDescriptor
0%
0/23
0%
0/6
4
 
 1  
 /*
 2  
  * Copyright 2007-2008 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.core.jpa.metadata;
 17  
 
 18  
 import javax.persistence.CascadeType;
 19  
 
 20  
 /**
 21  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 22  
  */
 23  0
 public class ManyToOneDescriptor extends ObjectDescriptor implements java.io.Serializable {
 24  
 
 25  
         private static final long serialVersionUID = -1277621663465909764L;
 26  
 
 27  
         public String toString() {
 28  0
                 StringBuffer sb = new StringBuffer();
 29  0
                 sb.append("ManyToOneDescriptor = [ ");
 30  0
                 sb.append("targetEntity:").append(targetEntity.getName()).append(", ");
 31  0
                 sb.append("cascade = { ");
 32  0
                 for (CascadeType ct : cascade) {
 33  0
                         sb.append(ct).append(" ");
 34  
                 }
 35  0
                 sb.append("}, ");
 36  0
                 sb.append("fetch:").append(fetch).append(", ");
 37  0
                 sb.append("optional:").append(optional);
 38  0
                 if (!joinColumnDescriptors.isEmpty()) {
 39  0
                         sb.append(", join columns = { ");
 40  0
                         for (JoinColumnDescriptor joinColumnDescriptor : joinColumnDescriptors) {                                
 41  0
                                 sb.append(" jc = { ");
 42  0
                                 sb.append("name:").append(joinColumnDescriptor.getName()).append(", ");
 43  0
                                 sb.append("insertable:").append(joinColumnDescriptor.isInsertable()).append(", ");
 44  0
                                 sb.append("nullable:").append(joinColumnDescriptor.isNullable()).append(", ");
 45  0
                                 sb.append("unique:").append(joinColumnDescriptor.isUnique()).append(", ");
 46  0
                                 sb.append("updateable:").append(joinColumnDescriptor.isUpdateable());
 47  0
                                 sb.append(" }");
 48  
                         }
 49  0
                         sb.append(" } ");
 50  
                 }
 51  0
                 sb.append(" ]");
 52  0
                 return sb.toString();
 53  
         }
 54  
         
 55  
 }