use of org.talend.metadata.managment.ui.wizard.PropertiesWizardPage in project tesb-studio-se by Talend.
the class OpenWSDLPage method getDestinationPath.
/**
* Gets the path to save the Service node. Created by Marvin Wang on May 11, 2012.
*
* @return
*/
protected IPath getDestinationPath() {
IWizardPage previousPage = this.getPreviousPage();
if (previousPage instanceof PropertiesWizardPage) {
PropertiesWizardPage wizardPage = (PropertiesWizardPage) previousPage;
pathToSave = wizardPage.getDestinationPath();
}
return pathToSave;
}
Aggregations