Revision 1885 trunk/extensions/extWCS/src-gvsig/com/iver/cit/gvsig/gui/WizardPanel.java

View differences:

WizardPanel.java
48 48

  
49 49

  
50 50
public abstract class WizardPanel extends JPanel{
51
	private String tabName = "TabName";
51
	private String tabName = "TabName"; // LWS
52 52
	private WizardListenerSupport listenerSupport = new WizardListenerSupport();
53 53

  
54 54
	public void addWizardListener(WizardListener listener) {
......
63 63
	public void callStateChanged(boolean finishable) {
64 64
		listenerSupport.callStateChanged(finishable);
65 65
	}
66
	
67
	// LWS el constructor pone el nombre que prefiere para la pesta?a.
66 68
	protected void setTabName(String name) { tabName = name; }
67 69
	public String getTabName() { return tabName; }
70
	// LWS inicializa el wizard
68 71
	abstract public void initWizard();
72
	// LWS ejecuta el wizard
69 73
	abstract public void execute();
70
	abstract public FLayer getLayer();
74
	// LWS obtiene la capa
75
	abstract public FLayer getLayer();	
71 76
}

Also available in: Unified diff