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.
		
		
		
		
		
			
		
			
				
					
					
						
							39 lines
						
					
					
						
							846 B
						
					
					
				
			
		
		
	
	
							39 lines
						
					
					
						
							846 B
						
					
					
				/*
 | 
						|
 * Test.java
 | 
						|
 *
 | 
						|
 * Created on 17 de Janeiro de 2006, 18:37
 | 
						|
 *
 | 
						|
 * To change this template, choose Tools | Options and locate the template under
 | 
						|
 * the Source Creation and Management node. Right-click the template and choose
 | 
						|
 * Open. You can then make changes to the template in the Source Editor.
 | 
						|
 */
 | 
						|
 | 
						|
package siprp.medicina;
 | 
						|
 | 
						|
import java.awt.*;
 | 
						|
import javax.swing.*;
 | 
						|
/**
 | 
						|
 *
 | 
						|
 * @author fpalma
 | 
						|
 */
 | 
						|
public class Test
 | 
						|
{
 | 
						|
	
 | 
						|
	public static void main( String args[] )
 | 
						|
		throws Exception
 | 
						|
	{
 | 
						|
		JFrame frm = new MedicinaWindow();
 | 
						|
//		frm.getContentPane().setLayout( new GridLayout() );
 | 
						|
//		frm.getContentPane().add( new MedicinaUpperPanel() );
 | 
						|
//		frm.setSize( new Dimension( 600, 600 ) );
 | 
						|
		frm.setVisible( true );
 | 
						|
		frm.setExtendedState(frm.getExtendedState() | frm.MAXIMIZED_BOTH);
 | 
						|
	}
 | 
						|
	
 | 
						|
	/** Creates a new instance of Test */
 | 
						|
	public Test()
 | 
						|
	{
 | 
						|
	}
 | 
						|
	
 | 
						|
}
 |