Revision 10786 branches/F2/extensions/extJCRS/src/org/gvsig/crs/gui/panels/TransformationEpsgPanel.java

View differences:

TransformationEpsgPanel.java
40 40

  
41 41
package org.gvsig.crs.gui.panels;
42 42

  
43
import java.awt.BorderLayout;
43 44
import java.awt.Component;
44 45
import java.awt.Dimension;
45
import java.awt.FlowLayout;
46
import java.awt.GridLayout;
47 46
import java.sql.ResultSet;
48 47
import java.sql.SQLException;
49 48
import java.util.ArrayList;
......
72 71
 * para el caso de la EPSG
73 72
 * 
74 73
 * @author Jos? Luis G?mez Mart?nez (jolugomar@gmail.com)
74
 * @author Luisa Marina Fern?ndez (luisam.fernandez@uclm.es)
75 75
 *
76 76
 */
77 77
public class TransformationEpsgPanel extends JPanel  {
......
127 127
	}
128 128
	
129 129
	private void initialize(){
130
		
131
			setLayout(new GridLayout(1,2));
132
			setLayout(new FlowLayout(FlowLayout.LEADING,5,10));
133
			setPreferredSize(new Dimension(525, 100));
130
			setLayout(new BorderLayout(1,50));
134 131
			setBorder(
135 132
				    BorderFactory.createCompoundBorder(
136 133
							BorderFactory.createCompoundBorder(
137 134
									BorderFactory.createTitledBorder("Transformacion EPSG"),
138
									BorderFactory.createEmptyBorder(2,2,2,2)),
135
									BorderFactory.createEmptyBorder(12,2,80,2)),
139 136
									getBorder()));
140
			add(getJScrollPane());
137
			add(getJScrollPane(),BorderLayout.CENTER);
141 138
	}
142 139
	
143 140
	private Component getInfo() {
......
164 161
			Object[][]data = {};
165 162
			dtm = new DefaultTableModel(data, columnNames)
166 163
			{
164
				private static final long serialVersionUID = 1L;
167 165
				public boolean isCellEditable(int row, int column) {
168 166
					return false;
169 167
				}

Also available in: Unified diff