You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SIPRP/trunk/SIPRPSoft/src/siprp/medicina/presencas/ImpressaoAuxiliaresWindow.java

42 lines
858 B

/*
* ImpressaoAuxiliaresWindow.java
*
* Created on 7 de Dezembro de 2006, 16:13
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package siprp.medicina.presencas;
import javax.swing.JButton;
import javax.swing.JLabel;
import siprp.ui.SIPRPFrame;
import com.evolute.utils.ui.calendar.JCalendarPanel;
/**
*
* @author fpalma
*/
public class ImpressaoAuxiliaresWindow extends SIPRPFrame
{
protected JCalendarPanel calendarPanel;
protected JButton imprimirButton;
/** Creates a new instance of ImpressaoAuxiliaresWindow */
public ImpressaoAuxiliaresWindow()
{
setupComponents();
}
private void setupComponents()
{
setTitle( "Imprimir" );
JLabel dataLabel = new JLabel( "Data" );
calendarPanel = new JCalendarPanel( this );
imprimirButton = new JButton( "Imprimir" );
}
}