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.
		
		
		
		
		
			
		
			
				
					
					
						
							56 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							56 lines
						
					
					
						
							1.1 KiB
						
					
					
				| /*
 | |
|  * ObservacoesPanel.java
 | |
|  *
 | |
|  * Created on 29 de Março de 2004, 11:56
 | |
|  */
 | |
| 
 | |
| package siprp.ficha;
 | |
| 
 | |
| import java.awt.*;
 | |
| import javax.swing.*;
 | |
| 
 | |
| import com.evolute.utils.dataui.*;
 | |
| 
 | |
| /**
 | |
|  *
 | |
|  * @author  fpalma
 | |
|  */
 | |
| public class ObservacoesPanel extends JPanel
 | |
| 	implements FillerSaverWrapper
 | |
| {
 | |
| 	private JTextArea observacoesText;
 | |
| 	
 | |
| 	/** Creates a new instance of ObservacoesPanel */
 | |
| 	public ObservacoesPanel()
 | |
| 	{
 | |
| 		setupComponents();
 | |
| 	}
 | |
| 	
 | |
| 	private void setupComponents()
 | |
| 	{
 | |
| 		setBorder( BorderFactory.createTitledBorder(
 | |
| 					BorderFactory.createEtchedBorder(),
 | |
| 					"Observa\u00e7\u00f5es" ) );
 | |
| 		
 | |
| 		JScrollPane scp = new JScrollPane();
 | |
| 		scp.setHorizontalScrollBarPolicy( JScrollPane.HORIZONTAL_SCROLLBAR_NEVER );
 | |
| 		scp.setVerticalScrollBarPolicy( JScrollPane.VERTICAL_SCROLLBAR_ALWAYS );
 | |
| 		observacoesText = new JTextArea();
 | |
| 		observacoesText.setLineWrap( true );
 | |
| 		observacoesText.setWrapStyleWord( true );
 | |
| 		scp.setViewportView( observacoesText );
 | |
| 		
 | |
| 		setLayout( new GridLayout( 1, 1, 0, 0 ) );
 | |
| 		add( scp );
 | |
| 	}
 | |
| 	
 | |
| 	public void fill(Object value)
 | |
| 	{
 | |
| 	}
 | |
| 	
 | |
| 	public Object save()
 | |
| 	{
 | |
| 		return null;
 | |
| 	}
 | |
| }
 |