View Javadoc
1 /* 2 * Distributable under LGPL license. 3 * See terms of license at gnu.org. 4 * 5 * (c) Copyright 2002 Jon Tirsén. 6 */ 7 package com.tirsen.angkor.test.unit; 8 9 import org.apache.commons.logging.Log; 10 import org.apache.commons.logging.LogFactory; 11 import com.tirsen.angkor.Application; 12 import com.tirsen.angkor.process.Pipeline; 13 14 /*** 15 * TODO document MockApplication. 16 * 17 * User: Jon Tirsén 18 * Date: 2002-okt-05 19 * Time: 20:26:35 20 */ 21 public class MockApplication extends Application 22 { 23 private static final Log logger = LogFactory.getLog(MockApplication.class); 24 25 protected Pipeline createDefaultPipeline() 26 { 27 return new MockPipeline(); 28 } 29 }

This page was automatically generated by Maven