use of org.apache.hop.ui.core.gui.WindowProperty in project hop by apache.
the class ActionFileExistsDialog method dispose.
public void dispose() {
WindowProperty winprop = new WindowProperty(shell);
props.setScreen(winprop);
shell.dispose();
}
use of org.apache.hop.ui.core.gui.WindowProperty in project hop by apache.
the class ActionEvalFilesMetricsDialog method dispose.
public void dispose() {
WindowProperty winprop = new WindowProperty(shell);
props.setScreen(winprop);
shell.dispose();
}
use of org.apache.hop.ui.core.gui.WindowProperty in project hop by apache.
the class ActionFolderIsEmptyDialog method dispose.
public void dispose() {
WindowProperty winprop = new WindowProperty(shell);
props.setScreen(winprop);
shell.dispose();
}
use of org.apache.hop.ui.core.gui.WindowProperty in project hop by apache.
the class ActionGetPOPDialog method dispose.
public void dispose() {
closeMailConnection();
WindowProperty winprop = new WindowProperty(shell);
props.setScreen(winprop);
shell.dispose();
}
use of org.apache.hop.ui.core.gui.WindowProperty in project hop by apache.
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();
}
Aggregations