Revision 8555

View differences:

trunk/extensions/extGraph_predes/src/com/iver/cit/gvsig/graph/gui/wizard/NetPage0.java
1
/*
2
 * Created on 07-nov-2006 by azabala
3
 *
4
 */
5
package com.iver.cit.gvsig.graph.gui.wizard;
6

  
7
import jwizardcomponent.JWizardPanel;
8

  
9
import org.gvsig.gui.beans.swing.GridBagLayoutPanel;
10

  
11
import com.iver.andami.PluginServices;
12

  
13
/**
14
 * @author alzabord
15
 *
16
 */
17
public class NetPage0 extends JWizardPanel  {
18
	private NetWizard owner;
19
	
20
	NetPage0(NetWizard wizard) {
21
		super(wizard.getWizardComponents());
22
		this.owner = wizard;
23
		initialize();
24
	}
25

  
26
	private void initialize() {
27
		GridBagLayoutPanel contentPane = new GridBagLayoutPanel();
28
		contentPane.setBorder(javax.swing.BorderFactory.createTitledBorder(null,
29
				PluginServices.getText(this, "length (esto ho llevare)"),
30
				javax.swing.border.TitledBorder.DEFAULT_JUSTIFICATION,
31
				javax.swing.border.TitledBorder.DEFAULT_POSITION, null, null));
32
		this.add(contentPane);
33
	}
34

  
35
}
0 36

  

Also available in: Unified diff