forked from Coded/SIPRP
				
			
			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
						
					
					
						
							652 B
						
					
					
				
			
		
		
	
	
							36 lines
						
					
					
						
							652 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;
 | 
						|
import siprp.medicina.presencas.Presenca;
 | 
						|
 | 
						|
/**
 | 
						|
 *
 | 
						|
 * @author fpalma
 | 
						|
 */
 | 
						|
public class RealizouAction extends AbstractAction
 | 
						|
{
 | 
						|
	protected Presenca presenca;
 | 
						|
	
 | 
						|
	/** Creates a new instance of RealizouAction */
 | 
						|
	public RealizouAction( Presenca presenca )
 | 
						|
	{
 | 
						|
		super( "Realizou" );
 | 
						|
		this.presenca = presenca;
 | 
						|
	}
 | 
						|
 | 
						|
	public void actionPerformed(ActionEvent e)
 | 
						|
	{
 | 
						|
	}
 | 
						|
	
 | 
						|
}
 |