From 5fefd5b2d2f8b922a51c40c464e7a1f2553baa35 Mon Sep 17 00:00:00 2001 From: Frederico Palma Date: Tue, 11 May 2004 19:57:26 +0000 Subject: [PATCH] no message git-svn-id: https://svn.coded.pt/svn/SIPRP@83 bb69d46d-e84e-40c8-a05a-06db0d633741 --- .../estatisticas/EstatisticasWindow.java | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 trunk/siprp/estatisticas/EstatisticasWindow.java diff --git a/trunk/siprp/estatisticas/EstatisticasWindow.java b/trunk/siprp/estatisticas/EstatisticasWindow.java new file mode 100644 index 00000000..71e4e844 --- /dev/null +++ b/trunk/siprp/estatisticas/EstatisticasWindow.java @@ -0,0 +1,36 @@ +/* + * EstatisticasWindow.java + * + * Created on 11 de Maio de 2004, 17:57 + */ + +package siprp.estatisticas; + +import javax.swing.*; + +import com.evolute.utils.ui.window.*; + +/** + * + * @author fpalma + */ +public class EstatisticasWindow + extends CustomJFrame +{ + private JPanel filtrosPanel; + private JPanel agrupamentosPanel; + private JPanel buttonPanel; + + private JComboBox filtroEmpresa; + + /** Creates a new instance of EstatisticasWindow */ + public EstatisticasWindow() + { + setupComponents(); + } + + private void setupComponents() + { + } + +}