01: /*
02: * Created on 30/01/2005
03: *
04: * Swing Components - visit http://sf.net/projects/gfd
05: *
06: * Copyright (C) 2004 Igor Regis da Silva Simões
07: *
08: * This program is free software; you can redistribute it and/or modify it under the terms of the
09: * GNU General Public License as published by the Free Software Foundation; either version 2 of the License,
10: * or (at your option) any later version. This program is distributed in the hope that it will be useful, but
11: * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12: * PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU
13: * General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59
14: * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15: */
16:
17: package br.com.gfp.windows;
18:
19: import br.com.gfp.internationalization.TelaConfiguracaoGFPMessages;
20: import br.com.gfpshare.beans.aplicativos.IconeFactory;
21: import br.com.gfpshare.config.TelaConfiguracao;
22:
23: /**
24: * @author Igor Regis da Silva Simoes
25: */
26: public class ConfigureGFPWindow extends TelaConfiguracao {
27: /**
28: * This is the default constructor
29: */
30: public ConfigureGFPWindow() {
31: super ("/xml/config/Config.xml"); //$NON-NLS-1$
32: setTitle(TelaConfiguracaoGFPMessages.getMessages().getString(
33: "configuracoes")); //$NON-NLS-1$
34: setFrameIcon(IconeFactory.getIconeFactory().getImageIcon(
35: "Configurar GFD")); //$NON-NLS-1$
36: }
37: }
|