Coverage Report - org.kuali.rice.kns.datadictionary.SearchingTypeDefinition
 
Classes in this File Line Coverage Branch Coverage Complexity
SearchingTypeDefinition
0%
0/8
N/A
1
 
 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.kns.datadictionary;
 17  
 
 18  
 import java.util.List;
 19  
 
 20  
 
 21  
 /**
 22  
  * This is a description of what this class does - mpham don't forget to fill this in. 
 23  
  * 
 24  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 25  
  *
 26  
  */
 27  0
 public class SearchingTypeDefinition extends DataDictionaryDefinitionBase {
 28  
         private static final long serialVersionUID = -8779609937539520677L;
 29  
         
 30  
         private SearchingAttribute searchingAttribute;
 31  
         private List<String> paths;
 32  
         
 33  
         /**
 34  
          * @return the searchingAttribute
 35  
          */
 36  
         public SearchingAttribute getSearchingAttribute() {
 37  0
                 return this.searchingAttribute;
 38  
         }
 39  
         /**
 40  
          * @return the documentValues
 41  
          */
 42  
         public List<String> getDocumentValues() {
 43  0
                 return this.paths;
 44  
         }
 45  
         /**
 46  
          * @param searchingAttribute the searchingAttribute to set
 47  
          */
 48  
         public void setSearchingAttribute(SearchingAttribute searchingAttribute) {
 49  0
                 this.searchingAttribute = searchingAttribute;
 50  0
         }
 51  
         /**
 52  
          * @param documentValues the documentValues to set
 53  
          */
 54  
         public void setDocumentValues(List<String> paths) {
 55  0
                 this.paths = paths;
 56  0
         }
 57  
         /**
 58  
          * This overridden method ...
 59  
          * 
 60  
          * @see org.kuali.rice.kns.datadictionary.DataDictionaryDefinition#completeValidation(java.lang.Class, java.lang.Class)
 61  
          */
 62  
         public void completeValidation(Class rootBusinessObjectClass,
 63  
                         Class otherBusinessObjectClass) {
 64  
                 
 65  0
         }
 66  
 }