Coverage Report - org.apache.xmlrpc.serializer.ListSerializer
 
Classes in this File Line Coverage Branch Coverage Complexity
ListSerializer
0% 
0% 
1,5
 
 1  
 /*
 2  
  * Copyright 1999,2005 The Apache Software Foundation.
 3  
  * 
 4  
  * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
 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.apache.xmlrpc.serializer;
 17  
 
 18  
 import java.util.List;
 19  
 
 20  
 import org.apache.xmlrpc.common.TypeFactory;
 21  
 import org.apache.xmlrpc.common.XmlRpcStreamConfig;
 22  
 import org.xml.sax.ContentHandler;
 23  
 import org.xml.sax.SAXException;
 24  
 
 25  
 
 26  
 /** A {@link TypeSerializer} for lists.
 27  
  */
 28  
 public class ListSerializer extends ObjectArraySerializer {
 29  
         /** Creates a new instance.
 30  
          * @param pTypeFactory The factory being used for creating serializers.
 31  
          * @param pConfig The configuration being used for creating serializers.
 32  
          */
 33  
         public ListSerializer(TypeFactory pTypeFactory, XmlRpcStreamConfig pConfig) {
 34  0
                 super(pTypeFactory, pConfig);
 35  0
         }
 36  
         protected void writeData(ContentHandler pHandler, Object pObject) throws SAXException {
 37  0
                 List data = (List) pObject;
 38  0
                 for (int i = 0;  i < data.size();  i++) {
 39  0
                         writeObject(pHandler, data.get(i));
 40  
                 }
 41  0
         }
 42  
 }