Search in sources :

Example 1 with DocumentImpl

use of org.eclipse.wst.xml.core.internal.document.DocumentImpl in project webtools.sourceediting by eclipse.

the class EditDoctypeAction method createDoctype.

protected DocumentType createDoctype(EditDoctypeDialog dialog, Document document) {
    DocumentType result = null;
    if (document instanceof DocumentImpl) {
        IDOMDocument documentImpl = (IDOMDocument) document;
        IDOMDocumentType doctypeImpl = (IDOMDocumentType) documentImpl.createDoctype(dialog.getName());
        doctypeImpl.setPublicId(dialog.getPublicId());
        doctypeImpl.setSystemId(dialog.getSystemId());
        result = doctypeImpl;
    }
    return result;
}
Also used : IDOMDocumentType(org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocumentType) IDOMDocumentType(org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocumentType) DocumentType(org.w3c.dom.DocumentType) IDOMDocument(org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocument) DocumentImpl(org.eclipse.wst.xml.core.internal.document.DocumentImpl)

Example 2 with DocumentImpl

use of org.eclipse.wst.xml.core.internal.document.DocumentImpl in project webtools.sourceediting by eclipse.

the class MakeLocalElementGlobalAction method run.

public void run() {
    DocumentImpl doc = (DocumentImpl) fSelectedComponent.getElement().getOwnerDocument();
    doc.getModel().beginRecording(this, getText());
    MakeLocalElementGlobalCommand command = new MakeLocalElementGlobalCommand(fSelectedComponent);
    command.run();
    doc.getModel().endRecording(this);
}
Also used : MakeLocalElementGlobalCommand(org.eclipse.wst.xsd.ui.internal.refactor.structure.MakeLocalElementGlobalCommand) DocumentImpl(org.eclipse.wst.xml.core.internal.document.DocumentImpl)

Example 3 with DocumentImpl

use of org.eclipse.wst.xml.core.internal.document.DocumentImpl in project webtools.sourceediting by eclipse.

the class MakeAnonymousTypeGobalHandler method run.

public void run(ISelection selection, XSDSchema schema, XSDTypeDefinition selectedComponent) {
    if (selectedComponent == null) {
        return;
    }
    if (selectedComponent.getSchema() == null) {
        schema.updateElement(true);
    }
    DocumentImpl doc = (DocumentImpl) selectedComponent.getElement().getOwnerDocument();
    doc.getModel().beginRecording(this, RefactoringWizardMessages.MakeAnonymousTypeGlobalAction_text);
    MakeAnonymousTypeGlobalCommand command = new MakeAnonymousTypeGlobalCommand(selectedComponent, getNewDefaultName());
    command.run();
    doc.getModel().endRecording(this);
}
Also used : MakeAnonymousTypeGlobalCommand(org.eclipse.wst.xsd.ui.internal.refactor.structure.MakeAnonymousTypeGlobalCommand) DocumentImpl(org.eclipse.wst.xml.core.internal.document.DocumentImpl)

Example 4 with DocumentImpl

use of org.eclipse.wst.xml.core.internal.document.DocumentImpl in project webtools.sourceediting by eclipse.

the class CreateElementAction method endRecording.

public void endRecording() {
    DocumentImpl doc = getDocument();
    doc.getModel().endRecording(this);
}
Also used : DocumentImpl(org.eclipse.wst.xml.core.internal.document.DocumentImpl)

Example 5 with DocumentImpl

use of org.eclipse.wst.xml.core.internal.document.DocumentImpl in project webtools.sourceediting by eclipse.

the class XSDEditNamespacesAction method run.

public void run() {
    if (element != null) {
        Shell shell = XMLCommonResources.getInstance().getWorkbench().getActiveWorkbenchWindow().getShell();
        String targetNamespace = null;
        if (xsdSchema != null) {
            targetNamespace = xsdSchema.getTargetNamespace();
        }
        XSDEditSchemaInfoDialog dialog = new XSDEditSchemaInfoDialog(shell, new Path(resourceLocation), targetNamespace);
        List namespaceInfoList = namespaceInfoManager.getNamespaceInfoList(element);
        List oldNamespaceInfoList = NamespaceInfo.cloneNamespaceInfoList(namespaceInfoList);
        // update the document in response to these changes
        for (Iterator i = namespaceInfoList.iterator(); i.hasNext(); ) {
            NamespaceInfo info = (NamespaceInfo) i.next();
            NamespaceInfo oldCopy = new NamespaceInfo(info);
            // $NON-NLS-1$
            info.setProperty("oldCopy", oldCopy);
        }
        dialog.setNamespaceInfoList(namespaceInfoList);
        dialog.create();
        dialog.getShell().setSize(500, 400);
        // $NON-NLS-1$
        dialog.getShell().setText(XMLCommonResources.getInstance().getString("_UI_MENU_EDIT_SCHEMA_INFORMATION_TITLE"));
        dialog.setBlockOnOpen(true);
        dialog.open();
        // $NON-NLS-1$
        String xsdPrefix = null;
        String origXSDPrefix = xsdSchema.getSchemaForSchemaQNamePrefix();
        String newTNSPrefix = "";
        if (dialog.getReturnCode() == Window.OK) {
            Element xsdSchemaElement = xsdSchema.getElement();
            DocumentImpl doc = (DocumentImpl) xsdSchemaElement.getOwnerDocument();
            List newInfoList = dialog.getNamespaceInfoList();
            // see if we need to rename any prefixes
            Map prefixMapping = createPrefixMapping(oldNamespaceInfoList, namespaceInfoList);
            String origTNSPrefix = null;
            Map origPrefixMap = xsdSchema.getQNamePrefixToNamespaceMap();
            for (Iterator iter = origPrefixMap.keySet().iterator(); iter.hasNext(); ) {
                String key = (String) iter.next();
                String ns = (String) origPrefixMap.get(key);
                if ((targetNamespace == null && ns == null) || targetNamespace != null && targetNamespace.equals(ns)) {
                    origTNSPrefix = key;
                    break;
                }
            }
            Map map2 = new Hashtable();
            for (Iterator iter = newInfoList.iterator(); iter.hasNext(); ) {
                NamespaceInfo ni = (NamespaceInfo) iter.next();
                String pref = ni.prefix;
                String uri = ni.uri;
                if (pref == null)
                    // $NON-NLS-1$
                    pref = "";
                if (uri == null)
                    // $NON-NLS-1$
                    uri = "";
                if (XSDConstants.isSchemaForSchemaNamespace(uri)) {
                    xsdPrefix = pref;
                }
                if (uri.equals(dialog.getTargetNamespace())) {
                    newTNSPrefix = pref;
                }
                map2.put(pref, uri);
            }
            if (map2.size() > 0) {
                try {
                    doc.getModel().beginRecording(this, XSDEditorPlugin.getXSDString("_UI_NAMESPACE_CHANGE"));
                    boolean targetNamespaceChanged = (targetNamespace != null && !targetNamespace.equals(dialog.getTargetNamespace()) || targetNamespace == null && dialog.getTargetNamespace() != null);
                    boolean tnsPrefixChanged = !newTNSPrefix.equals(origTNSPrefix);
                    boolean xsdPrefixChanged = (!(origXSDPrefix == null && xsdPrefix.equals("")) || (origXSDPrefix != null && !origXSDPrefix.equals(xsdPrefix)));
                    xsdSchema.setIncrementalUpdate(false);
                    // First handle the prefix change for the target namespace
                    if (tnsPrefixChanged) {
                        prefixMapping.remove(origTNSPrefix);
                        UpdateNamespaceInformationCommand command = new UpdateNamespaceInformationCommand(Messages._UI_ACTION_NAMESPACE_INFORMATION_CHANGE, xsdSchema, newTNSPrefix, targetNamespace);
                        command.execute();
                        xsdSchema.update();
                    }
                    // Second, handle the target namespace change
                    if (targetNamespaceChanged) {
                        // set the targetNamespace attribute
                        xsdSchema.setTargetNamespace(dialog.getTargetNamespace());
                        TargetNamespaceChangeHandler targetNamespaceChangeHandler = new TargetNamespaceChangeHandler(xsdSchema, targetNamespace, dialog.getTargetNamespace());
                        targetNamespaceChangeHandler.resolve();
                    }
                    if (prefixMapping.size() > 0) {
                        for (Iterator iter = prefixMapping.keySet().iterator(); iter.hasNext(); ) {
                            String oldPrefix = (String) iter.next();
                            String newPrefix = (String) prefixMapping.get(oldPrefix);
                            // Now update any references to this old prefix in the schema
                            // with the value of the new prefix
                            String ns = (String) origPrefixMap.get(oldPrefix);
                            // $NON-NLS-1$
                            SchemaPrefixChangeHandler spch = new SchemaPrefixChangeHandler(xsdSchema, newPrefix, ns != null ? ns : "");
                            spch.resolve();
                        }
                    }
                    namespaceInfoManager.removeNamespaceInfo(element);
                    namespaceInfoManager.addNamespaceInfo(element, newInfoList, false);
                    // Third, handle the schema for schema prefix change
                    if (xsdPrefixChanged) {
                        if (xsdPrefix != null && xsdPrefix.length() == 0) {
                            xsdSchema.setSchemaForSchemaQNamePrefix(null);
                        } else {
                            xsdSchema.setSchemaForSchemaQNamePrefix(xsdPrefix);
                        }
                        namespaceInfoManager.removeNamespaceInfo(element);
                        namespaceInfoManager.addNamespaceInfo(element, newInfoList, false);
                        xsdSchema.setIncrementalUpdate(true);
                        // Now change the references to any schema types/components ie. string --> xs:string
                        SchemaPrefixChangeHandler spch = new SchemaPrefixChangeHandler(xsdSchema, xsdPrefix);
                        spch.resolve();
                        // Change the prefix for all schema components
                        updateAllNodes(element, xsdPrefix);
                        // $NON-NLS-1$
                        prefixMapping.remove(origXSDPrefix != null ? origXSDPrefix : "");
                    }
                    xsdSchema.setIncrementalUpdate(true);
                } catch (Exception e) {
                } finally {
                    xsdSchema.update();
                    doc.getModel().endRecording(this);
                }
            }
        }
    }
}
Also used : Path(org.eclipse.core.runtime.Path) Hashtable(java.util.Hashtable) Element(org.w3c.dom.Element) TargetNamespaceChangeHandler(org.eclipse.wst.xsd.ui.internal.nsedit.TargetNamespaceChangeHandler) XSDEditSchemaInfoDialog(org.eclipse.wst.xsd.ui.internal.widgets.XSDEditSchemaInfoDialog) DocumentImpl(org.eclipse.wst.xml.core.internal.document.DocumentImpl) Shell(org.eclipse.swt.widgets.Shell) Iterator(java.util.Iterator) NodeList(org.w3c.dom.NodeList) List(java.util.List) NamespaceInfo(org.eclipse.wst.xml.core.internal.contentmodel.util.NamespaceInfo) SchemaPrefixChangeHandler(org.eclipse.wst.xsd.ui.internal.nsedit.SchemaPrefixChangeHandler) Map(java.util.Map) UpdateNamespaceInformationCommand(org.eclipse.wst.xsd.ui.internal.common.commands.UpdateNamespaceInformationCommand)

Aggregations

DocumentImpl (org.eclipse.wst.xml.core.internal.document.DocumentImpl)11 Element (org.w3c.dom.Element)3 Iterator (java.util.Iterator)2 List (java.util.List)2 NamespaceInfo (org.eclipse.wst.xml.core.internal.contentmodel.util.NamespaceInfo)2 TargetNamespaceChangeHandler (org.eclipse.wst.xsd.ui.internal.nsedit.TargetNamespaceChangeHandler)2 MakeAnonymousTypeGlobalCommand (org.eclipse.wst.xsd.ui.internal.refactor.structure.MakeAnonymousTypeGlobalCommand)2 MakeLocalElementGlobalCommand (org.eclipse.wst.xsd.ui.internal.refactor.structure.MakeLocalElementGlobalCommand)2 NodeList (org.w3c.dom.NodeList)2 Hashtable (java.util.Hashtable)1 Map (java.util.Map)1 Path (org.eclipse.core.runtime.Path)1 StyleRange (org.eclipse.swt.custom.StyleRange)1 Color (org.eclipse.swt.graphics.Color)1 Shell (org.eclipse.swt.widgets.Shell)1 DOMNamespaceInfoManager (org.eclipse.wst.xml.core.internal.contentmodel.util.DOMNamespaceInfoManager)1 IDOMDocument (org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocument)1 IDOMDocumentType (org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocumentType)1 IDOMModel (org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel)1 UpdateNamespaceInformationCommand (org.eclipse.wst.xsd.ui.internal.common.commands.UpdateNamespaceInformationCommand)1