[Trovacap-java-loginfo] jTrovaCap/java/uk/co/marcoratto/jtrovacap Runme.java, 1.1, 1.2
Brought to you by:
marcoratto
|
From: Marco R. <mar...@us...> - 2008-07-02 14:13:04
|
Update of /cvsroot/trovacap-java/jTrovaCap/java/uk/co/marcoratto/jtrovacap In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv26823/java/uk/co/marcoratto/jtrovacap Modified Files: Runme.java Log Message: Update to release 1.2 Index: Runme.java =================================================================== RCS file: /cvsroot/trovacap-java/jTrovaCap/java/uk/co/marcoratto/jtrovacap/Runme.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Runme.java 18 Jun 2007 09:57:29 -0000 1.1 --- Runme.java 2 Jul 2008 14:13:12 -0000 1.2 *************** *** 1,4 **** --- 1,25 ---- + /* + * Copyright (C) 2007 Marco Ratto + * + * This file is part of the project trovacap-java. + * + * trovacap-java is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * trovacap-java is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with trovacap-java; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package uk.co.marcoratto.jtrovacap; + import org.apache.log4j.Logger; + import thinlet.FrameLauncher; import uk.co.marcoratto.jtrovacap.thinlet.Gui; *************** *** 6,14 **** public class Runme { ! /** ! * Creates a frame including this thinlet demo ! */ ! public static void main(final String[] args) throws Exception { ! new FrameLauncher("jTrovaCap", new Gui(), 800, 600); } --- 27,38 ---- public class Runme { ! private static Logger logger = Logger.getLogger("uk.co.marcoratto.jtrovacap"); ! ! public static void main(final String[] args) { ! try { ! new FrameLauncher("jTrovaCap", new Gui(), 800, 600); ! } catch (Throwable t) { ! logger.error(t); ! } } |