Update of /cvsroot/webmacro/webmacro/src/org/webmacro/util
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31809/src/org/webmacro/util
Modified Files:
LogTargetFactory.java
Log Message:
Checkstyle: make final, javadoc
Index: LogTargetFactory.java
===================================================================
RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/util/LogTargetFactory.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** LogTargetFactory.java 30 Jul 2005 04:00:37 -0000 1.5
--- LogTargetFactory.java 20 Mar 2008 10:24:06 -0000 1.6
***************
*** 44,58 ****
* @since 0.99
*/
! public class LogTargetFactory
{
private static LogTargetFactory _instance = new LogTargetFactory();
public static class LogCreationException extends WebMacroException
{
- /**
- *
- */
private static final long serialVersionUID = 1L;
--- 44,56 ----
* @since 0.99
*/
! public final class LogTargetFactory
{
private static LogTargetFactory _instance = new LogTargetFactory();
+ /** Thrown when a log cannot be created. */
public static class LogCreationException extends WebMacroException
{
private static final long serialVersionUID = 1L;
***************
*** 63,72 ****
}
! /** Creates new LogTargetFactory */
private LogTargetFactory ()
{
}
! /** return the only instance of this LogTargetFactory */
public static final LogTargetFactory getInstance ()
{
--- 61,70 ----
}
! /** Creates new LogTargetFactory. */
private LogTargetFactory ()
{
}
! /** Return the only instance of this LogTargetFactory. */
public static final LogTargetFactory getInstance ()
{
***************
*** 75,79 ****
/**
! * Creates a new <code>org.webmacro.util.LogTarget</code>
*
* @param broker the Broker that is requesting to create the log. The
--- 73,77 ----
/**
! * Creates a new <code>org.webmacro.util.LogTarget</code>.
*
* @param broker the Broker that is requesting to create the log. The
***************
*** 111,113 ****
return lt;
}
! }
\ No newline at end of file
--- 109,112 ----
return lt;
}
! }
!
|