use of de.catma.ui.module.project.documentwizard.DocumentWizard in project catma by forTEXT.
the class ProjectView method handleAddDocumentRequest.
private void handleAddDocumentRequest() {
WizardContext wizardContext = new WizardContext();
wizardContext.put(DocumentWizard.WizardContextKey.PROJECT, project);
DocumentWizard documentWizard = new DocumentWizard(wizardContext, new SaveCancelListener<WizardContext>() {
@Override
public void savePressed(WizardContext result) {
handleSaveDocumentWizardContext(result);
}
});
documentWizard.show();
}
Aggregations