use of org.pentaho.di.ui.core.gui.WindowProperty in project pentaho-kettle by pentaho.
the class JobEntryFTPSGetDialog method dispose.
public void dispose() {
closeFTPSConnection();
WindowProperty winprop = new WindowProperty(shell);
props.setScreen(winprop);
shell.dispose();
}
use of org.pentaho.di.ui.core.gui.WindowProperty in project pentaho-kettle by pentaho.
the class JobEntryFTPSPUTDialog method dispose.
public void dispose() {
closeFTPSConnection();
WindowProperty winprop = new WindowProperty(shell);
props.setScreen(winprop);
shell.dispose();
}
use of org.pentaho.di.ui.core.gui.WindowProperty in project pentaho-kettle by pentaho.
the class SelectFolderDialog method dispose.
public void dispose() {
if (this.folder != null) {
try {
this.folder.close(false);
} catch (Exception e) {
/* Ignore */
}
}
props.setScreen(new WindowProperty(shell));
shell.dispose();
}
use of org.pentaho.di.ui.core.gui.WindowProperty in project pentaho-kettle by pentaho.
the class SelectDirectoryDialog method dispose.
public void dispose() {
props.setScreen(new WindowProperty(shell));
shell.dispose();
}
use of org.pentaho.di.ui.core.gui.WindowProperty in project pentaho-kettle by pentaho.
the class KettleFileRepositoryDialog method dispose.
public void dispose() {
props.setScreen(new WindowProperty(shell));
shell.dispose();
}
Aggregations