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 7963 2007-08-21 08:53:15Z 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
 21  
  */
 22  
 public class TestDefaultLifecycleAdapterFactory implements UMOLifecycleAdapterFactory
 23  
 {
 24  
 
 25  
     public TestDefaultLifecycleAdapterFactory()
 26  
     {
 27  0
         super();
 28  0
     }
 29  
 
 30  
     /*
 31  
      * (non-Javadoc)
 32  
      * 
 33  
      * @see org.mule.umo.lifecycle.UMOLifecycleAdapterFactory#create(java.lang.Object,
 34  
      *      org.mule.umo.UMODescriptor, org.mule.umo.model.UMOEntryPointResolver)
 35  
      */
 36  
     public UMOLifecycleAdapter create(Object component,
 37  
                                       UMODescriptor descriptor,
 38  
                                       UMOEntryPointResolver resolver) throws UMOException
 39  
     {
 40  0
         return new TestDefaultLifecycleAdapter(component, descriptor, resolver);
 41  
     }
 42  
 
 43  
 }