Coverage Report - org.apache.xmlrpc.client.XmlRpcClientWorkerFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
XmlRpcClientWorkerFactory
100% 
N/A 
1
 
 1  
 package org.apache.xmlrpc.client;
 2  
 
 3  
 import org.apache.xmlrpc.common.XmlRpcWorker;
 4  
 import org.apache.xmlrpc.common.XmlRpcWorkerFactory;
 5  
 
 6  
 
 7  
 /** A worker factory for the client, creating instances of
 8  
  * {@link org.apache.xmlrpc.client.XmlRpcClientWorker}.
 9  
  */
 10  
 public class XmlRpcClientWorkerFactory extends XmlRpcWorkerFactory {
 11  
         /** Creates a new instance.
 12  
          * @param pClient The factory controller.
 13  
          */
 14  
         public XmlRpcClientWorkerFactory(XmlRpcClient pClient) {
 15  202
                 super(pClient);
 16  202
         }
 17  
 
 18  
         /** Creates a new worker instance.
 19  
          * @return New instance of {@link XmlRpcClientWorker}.
 20  
          */
 21  
         protected XmlRpcWorker newWorker() {
 22  202
                 return new XmlRpcClientWorker(this);
 23  
         }
 24  
 }