1 29 package net.sourceforge.groboutils.tp.v1.log; 30 31 32 import net.sourceforge.groboutils.autodoc.v1.AutoDocTP; 33 import net.sourceforge.groboutils.autodoc.v1.spi.AutoDocTPFactory; 34 35 36 37 44 public class LogTPFactory implements AutoDocTPFactory 45 { 46 public AutoDocTP createTP( Class owner ) 47 { 48 if (owner == null) 49 { 50 throw new IllegalArgumentException ("no null owner allowed."); 51 } 52 return new LogTP( ".", owner ); 53 } 54 } 55 56 | Popular Tags |