/***************************************************************************
* Copyright (c) 2004 - 2008 Fabrizio Boco fabboco@users.sourceforge.net *
* *
* *
* This is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License (version 2.1) as published by the Free Software Foundation *
* *
* This library 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 Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
/**
- $Header: /usr/local/cvslocalrepository/SeamWebAppGenerator/src/org/boco/seamwebappgen/Attic/SeamWebAppGen.java,v 1.1.2.2 2008/04/22 05:37:58 fab Exp $
- $Author: fab $
- $Revision: 1.1.2.2 $
- $Date: 2008/04/22 05:37:58 $
- $Log: SeamWebAppGen.java,v $
- Revision 1.1.2.2 2008/04/22 05:37:58 fab
- Aggiornamento indirizzo di posta
-
- Revision 1.1.2.1 2008/04/19 13:12:49 fab
- Modifiche varie per rafactoring
-
- Revision 1.1.2.1 2008/04/19 11:18:34 fab
- Refactoring
-
- Revision 1.1.8.1 2008/04/19 10:07:02 fab
- Aggiornamento riferimenti licenza
-
- Revision 1.1 2007/09/29 13:17:26 fab
- Nuova versione iniziale del 29/09/2007
-
- Revision 1.1.2.1 2007/05/19 09:33:29 dev
- Moltissime modifiche
-
- Revision 1.1 2006/10/23 12:18:02 dev
- *** empty log message ***
-
- Revision 1.1 2006/10/23 08:25:31 dev
- Prima versione separata dal generatore struts
-
- Revision 1.4 2006/06/30 19:19:24 dev
- Modifiche iniziali per supportare la generazione Seam
-
- Revision 1.3 2006/06/02 16:54:19 dev
- Riorganizzata interfaccia grafica
-
- Revision 1.2 2006/04/20 10:15:12 dev
- Fix nella generazione delle pagine di ricerca sui listbox
- Intorudzione delle keywords CVS nei file generati
- Introduzione delle keywords per i file del generatore
-
**/
package org.boco.seamwebappgen;
import java.io.FileNotFoundException;
import java.io.IOException;
import org.boco.seamwebappgen.gui.WebAppGenGUI;
/**
*
* Classe principale
*
* @author Fabrizio Boco
*/
public class SeamWebAppGen
{
public static void main(String[] args) throws FileNotFoundException, IOException
{
WebAppGenGUI gui = new WebAppGenGUI();
}
}