Revision 36631 branches/v2_0_0_prep/applications/appgvSIG/src/org/gvsig/app/gui/WizardPanel.java

View differences:

WizardPanel.java
71 71

  
72 72
    abstract public void initWizard();
73 73

  
74
    /**
75
     * @deprecated use {@link #executeWizard()} instead.
76
     */
74 77
    abstract public void execute();
75 78

  
79
    /**
80
     * Executes the wizard and returns anything created in the process.
81
     * 
82
     * @return anything created in the process
83
     */
84
    public Object executeWizard() {
85
        execute();
86
        return null;
87
    }
88

  
76 89
    abstract public void close();
77 90

  
78 91
    abstract public DataStoreParameters[] getParameters();

Also available in: Unified diff