Coverage Report - org.kuali.rice.core.api.impex.xml.BaseXmlDocCollection
 
Classes in this File Line Coverage Branch Coverage Complexity
BaseXmlDocCollection
0%
0/8
N/A
1
 
 1  
 /**
 2  
  * Copyright 2005-2011 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.api.impex.xml;
 17  
 
 18  
 import java.io.File;
 19  
 import java.io.IOException;
 20  
 import java.util.ArrayList;
 21  
 import java.util.List;
 22  
 
 23  
 /**
 24  
  * Base implementation of XmlDocCollection interface
 25  
  * @see org.kuali.rice.core.api.impex.xml.BaseXmlDoc
 26  
  * @see org.kuali.rice.core.api.impex.xml.FileXmlDocCollection
 27  
  * @see org.kuali.rice.core.impl.impex.DirectoryXmlDocCollection
 28  
  * @see org.kuali.rice.core.api.impex.xml.ZipXmlDocCollection
 29  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 30  
  */
 31  
 abstract class BaseXmlDocCollection implements XmlDocCollection {
 32  
     protected File file;
 33  0
     protected List<BaseXmlDoc> xmlDocs = new ArrayList<BaseXmlDoc>();
 34  0
     public BaseXmlDocCollection(File file) {
 35  0
         this.file = file;
 36  0
     }
 37  
     public File getFile() {
 38  0
         return file;
 39  
     }
 40  
     public List<? extends XmlDoc> getXmlDocs() {
 41  0
         return xmlDocs;
 42  
     }
 43  
     public void close() throws IOException {
 44  0
     }
 45  
     public String toString() {
 46  0
         return file.getName();
 47  
     }
 48  
 }