Package org.eclipse.wst.xml.ui.internal.dialogs

Examples of org.eclipse.wst.xml.ui.internal.dialogs.EditSchemaInfoDialog.open()


        dialog.setNamespaceInfoList(namespaceInfoList);
        dialog.create();
        // dialog.getShell().setSize(500, 300);
        dialog.getShell().setText(XMLUIMessages._UI_MENU_EDIT_SCHEMA_INFORMATION_TITLE);
        dialog.setBlockOnOpen(true);
        dialog.open();
 
        if (dialog.getReturnCode() == Window.OK) {
          List newInfoList = dialog.getNamespaceInfoList();
          namespaceInfoManager.removeNamespaceInfo(element);
          namespaceInfoManager.addNamespaceInfo(element, newInfoList, false);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.