Coverage Report - org.mule.tck.testmodels.mule.TestDefaultLifecycleAdapterFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
TestDefaultLifecycleAdapterFactory
0%
0/3
N/A
1
 
 1  
 /*
 2  
  * $Id: TestDefaultLifecycleAdapterFactory.java 7976 2007-08-21 14:26:13Z dirk.olmes $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 
 11  
 package org.mule.tck.testmodels.mule;
 12  
 
 13  
 import org.mule.umo.UMODescriptor;
 14  
 import org.mule.umo.UMOException;
 15  
 import org.mule.umo.lifecycle.UMOLifecycleAdapter;
 16  
 import org.mule.umo.lifecycle.UMOLifecycleAdapterFactory;
 17  
 import org.mule.umo.model.UMOEntryPointResolver;
 18  
 
 19  
 /**
 20  
  * <code>TestDefaultLifecycleAdapterFactory</code> TODO (document class)
 21  
  * 
 22  
  * @author <a href="mailto:ross.mason@symphonysoft.com">Ross Mason</a>
 23  
  * @version $Revision: 7976 $
 24  
  */
 25  
 public class TestDefaultLifecycleAdapterFactory implements UMOLifecycleAdapterFactory
 26  
 {
 27  
 
 28  
     /**
 29  
      * 
 30  
      */
 31  
     public TestDefaultLifecycleAdapterFactory()
 32  
     {
 33  0
         super();
 34  0
     }
 35  
 
 36  
     /*
 37  
      * (non-Javadoc)
 38  
      * 
 39  
      * @see org.mule.umo.lifecycle.UMOLifecycleAdapterFactory#create(java.lang.Object,
 40  
      *      org.mule.umo.UMODescriptor, org.mule.umo.model.UMOEntryPointResolver)
 41  
      */
 42  
     public UMOLifecycleAdapter create(Object component,
 43  
                                       UMODescriptor descriptor,
 44  
                                       UMOEntryPointResolver resolver) throws UMOException
 45  
     {
 46  0
         return new TestDefaultLifecycleAdapter(component, descriptor, resolver);
 47  
     }
 48  
 
 49  
 }