Package org.springframework.ide.eclipse.config.ui.wizards

Examples of org.springframework.ide.eclipse.config.ui.wizards.NamespaceConfigWizard


    try {
      EvaluationContext context = (EvaluationContext) event.getApplicationContext();
      IFile xmlFile = getFile(context);
      if (BeansCoreUtils.isBeansConfig(xmlFile)) {
        EditorPart editor = (EditorPart) (context.getParent().getVariable("activePart"));
        NamespaceConfigWizard namespaceWizard = new NamespaceConfigWizard(xmlFile, editor);
        WizardDialog wizardDialog = new WizardDialog(Display.getDefault().getActiveShell(), namespaceWizard);
        wizardDialog.setBlockOnOpen(true);
        wizardDialog.create();
        wizardDialog.open();
      }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.config.ui.wizards.NamespaceConfigWizard

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.