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.

36 lines
544 B

/*
* ECDsPanel.java
*
* Created on 13 de Maio de 2007, 17:07
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package siprp.medicina.processo.detalhes;
import javax.swing.JFrame;
import javax.swing.JPanel;
/**
*
* @author Frederico
*/
public class ECDsPanel extends JPanel
{
protected JFrame owner;
/**
* Creates a new instance of ECDsPanel
*/
public ECDsPanel( JFrame owner )
{
this.owner = owner;
setupComponents();
}
private void setupComponents()
{
}
}