From: Tim P <ti...@us...> - 2008-03-17 12:28:12
|
Update of /cvsroot/webmacro/webmacro/examples In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31928/examples Modified Files: SandBox.java Log Message: Eclipse warning: organise imports, generate servialVersionID Index: SandBox.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/examples/SandBox.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SandBox.java 4 May 2001 00:39:27 -0000 1.2 --- SandBox.java 17 Mar 2008 12:28:08 -0000 1.3 *************** *** 1,12 **** ! import org.webmacro.*; ! import org.webmacro.servlet.*; /** ! * SandBox - where to play */ public class SandBox extends WMServlet { ! public Template handle(WebContext context) throws HandlerException { --- 1,17 ---- ! import org.webmacro.ResourceException; ! import org.webmacro.Template; ! import org.webmacro.servlet.HandlerException; ! import org.webmacro.servlet.WMServlet; ! import org.webmacro.servlet.WebContext; /** ! * SandBox - where to play. */ public class SandBox extends WMServlet { ! private static final long serialVersionUID = -4000736997081536863L; ! ! public Template handle(WebContext context) throws HandlerException { |