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/siprp/medicina/presencas/actions/RealizouAction.java

33 lines
533 B

/*
* RealizouAction.java
*
* Created on January 31, 2007, 6:20 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package siprp.medicina.presencas.actions;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
/**
*
* @author fpalma
*/
public class RealizouAction extends AbstractAction
{
/** Creates a new instance of RealizouAction */
public RealizouAction()
{
super( "Realizou" );
}
public void actionPerformed(ActionEvent e)
{
}
}