Search in sources :

Example 1 with PluginDetailsDialog

use of com.amalto.workbench.dialogs.PluginDetailsDialog in project tmdm-studio-se by Talend.

the class ServiceConfigrationMainPage method createCharacteristicsContent.

@Override
protected void createCharacteristicsContent(FormToolkit toolkit, Composite charSection) {
    // Routing Expressions
    Composite serviceGroup = this.getNewSectionComposite(Messages.ServiceConfigrationMainPage_3);
    serviceGroup.setLayout(new GridLayout(2, false));
    // Service Name
    Label serviceNameLabel = toolkit.createLabel(serviceGroup, Messages.ServiceConfigrationMainPage_4, SWT.NULL);
    serviceNameLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, true, 1, 1));
    Composite subPanel = toolkit.createComposite(serviceGroup);
    subPanel.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, true, 1, 1));
    subPanel.setLayout(new GridLayout(2, false));
    serviceNameCombo = new Combo(subPanel, SWT.DROP_DOWN | SWT.SINGLE | SWT.READ_ONLY);
    serviceNameCombo.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, true, 1, 1));
    ((GridData) serviceNameCombo.getLayoutData()).widthHint = 300;
    serviceNameCombo.addModifyListener(new ModifyListener() {

        public void modifyText(ModifyEvent e) {
            String serviceName = serviceNameCombo.getText();
            setRefreshing(true);
            setForConfigureContent(serviceName);
            setRefreshing(false);
        // markDirty();
        }
    });
    setForServiceNameCombo();
    // default parameters button
    // $NON-NLS-1$
    defultParameterBtn = toolkit.createButton(subPanel, "", SWT.PUSH);
    defultParameterBtn.setImage(ImageCache.getCreatedImage(EImage.HELP_CONTENTS.getPath()));
    defultParameterBtn.setToolTipText(Messages.ServiceConfigrationMainPage_5);
    defultParameterBtn.setLayoutData(new GridData(SWT.FILL, SWT.FILL, false, true, 1, 1));
    defultParameterBtn.addSelectionListener(new SelectionListener() {

        public void widgetDefaultSelected(org.eclipse.swt.events.SelectionEvent e) {
        }

        public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
            if (serviceNameCombo.getText().trim().length() == 0) {
                return;
            }
            // $NON-NLS-1$
            String doc = "";
            // $NON-NLS-1$
            String desc = "";
            try {
                desc = getDesc();
                doc = getDoc();
            } catch (Exception e1) {
                // $NON-NLS-1$
                doc = "N/A";
            } finally {
                showUpDialog(desc, doc);
            }
        }

        private void showUpDialog(String desc, String doc) {
            final PluginDetailsDialog dialog = new PluginDetailsDialog(getSite().getShell(), desc, doc, null, Messages.ServiceConfigrationMainPage_6);
            dialog.addListener(new Listener() {

                public void handleEvent(Event event) {
                    dialog.close();
                }
            });
            dialog.create();
            dialog.getShell().setText(serviceNameCombo.getText() + Messages.ServiceConfigrationMainPage_7);
            dialog.setBlockOnOpen(true);
            dialog.open();
        }
    });
    // Service Parameters
    Label serviceConfigurationsLabel = toolkit.createLabel(serviceGroup, Messages.ServiceConfigrationMainPage_8, SWT.NULL);
    serviceConfigurationsLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, true, 2, 1));
    // $NON-NLS-1$
    serviceConfigurationsText = toolkit.createText(serviceGroup, "", SWT.BORDER | SWT.MULTI | SWT.V_SCROLL | SWT.WRAP);
    serviceConfigurationsText.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, 2, 1));
    ((GridData) serviceConfigurationsText.getLayoutData()).widthHint = 200;
    ((GridData) serviceConfigurationsText.getLayoutData()).heightHint = 120;
    serviceConfigurationsText.addModifyListener(new ModifyListener() {

        public void modifyText(ModifyEvent e) {
            if (isRefreshing()) {
                return;
            }
            markDirtyWithoutCommit();
        }
    });
    checkButton = toolkit.createButton(serviceGroup, Messages.ServiceConfigrationMainPage_9, SWT.NONE);
    checkButton.addSelectionListener(new SelectionAdapter() {

        @Override
        public void widgetSelected(SelectionEvent e) {
            String msg = getContentsCheckResult();
            errorLabel.setForeground(CHECKMSG_SUCCESSFULCONN.equals(msg) ? errorLabel.getDisplay().getSystemColor(SWT.COLOR_BLUE) : errorLabel.getDisplay().getSystemColor(SWT.COLOR_RED));
            errorLabel.setText(msg);
        }
    });
    errorLabel = new Text(serviceGroup, SWT.WRAP);
    GridData gd = new GridData(SWT.FILL, SWT.FILL, true, true, 1, 2);
    gd.heightHint = 400;
    errorLabel.setLayoutData(gd);
}
Also used : Listener(org.eclipse.swt.widgets.Listener) ModifyListener(org.eclipse.swt.events.ModifyListener) SelectionListener(org.eclipse.swt.events.SelectionListener) Composite(org.eclipse.swt.widgets.Composite) ModifyListener(org.eclipse.swt.events.ModifyListener) SelectionAdapter(org.eclipse.swt.events.SelectionAdapter) Label(org.eclipse.swt.widgets.Label) Combo(org.eclipse.swt.widgets.Combo) Text(org.eclipse.swt.widgets.Text) WSString(com.amalto.workbench.webservices.WSString) PluginDetailsDialog(com.amalto.workbench.dialogs.PluginDetailsDialog) DocumentException(org.dom4j.DocumentException) IOException(java.io.IOException) WebServiceException(javax.xml.ws.WebServiceException) GridLayout(org.eclipse.swt.layout.GridLayout) ModifyEvent(org.eclipse.swt.events.ModifyEvent) GridData(org.eclipse.swt.layout.GridData) SelectionEvent(org.eclipse.swt.events.SelectionEvent) Event(org.eclipse.swt.widgets.Event) ModifyEvent(org.eclipse.swt.events.ModifyEvent) SelectionEvent(org.eclipse.swt.events.SelectionEvent) SelectionEvent(org.eclipse.swt.events.SelectionEvent) SelectionListener(org.eclipse.swt.events.SelectionListener)

Example 2 with PluginDetailsDialog

use of com.amalto.workbench.dialogs.PluginDetailsDialog in project tmdm-studio-se by Talend.

the class RoutingRuleMainPage method createCharacteristicsContent.

@Override
protected void createCharacteristicsContent(FormToolkit toolkit, Composite charComposite) {
    try {
        // description
        Label descriptionLabel = toolkit.createLabel(charComposite, Messages.descriptionLabel, SWT.NULL);
        descriptionLabel.setLayoutData(new GridData(SWT.FILL, SWT.FILL, false, true, 1, 1));
        // $NON-NLS-1$
        descriptionText = toolkit.createText(charComposite, "", SWT.BORDER);
        descriptionText.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
        descriptionText.addModifyListener(new ModifyListener() {

            public void modifyText(ModifyEvent e) {
                if (refreshing) {
                    return;
                }
                markDirtyWithoutCommit();
            }
        });
        // Util.createCompDropTarget(descriptionText);
        // objectType
        Label objectTypeLabel = toolkit.createLabel(charComposite, Messages.entityLabel, SWT.NULL);
        objectTypeLabel.setLayoutData(new GridData(SWT.BEGINNING, SWT.CENTER, false, true, 1, 1));
        Composite typeComposite = toolkit.createComposite(charComposite);
        typeComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
        GridLayout layout = new GridLayout(2, false);
        layout.marginLeft = 0;
        layout.marginWidth = 0;
        typeComposite.setLayout(layout);
        // $NON-NLS-1$
        objectTypeText = toolkit.createText(typeComposite, "", SWT.BORDER);
        objectTypeText.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING, SWT.CENTER, false, false, 1, 1));
        ((GridData) objectTypeText.getLayoutData()).widthHint = 300;
        // objectTypeText.setLocation(descriptionText.getLocation().x,descriptionText.getLocation().y+10);
        objectTypeText.addModifyListener(new ModifyListener() {

            public void modifyText(ModifyEvent e) {
                if (refreshing) {
                    return;
                }
                markDirtyWithoutCommit();
            }
        });
        // $NON-NLS-1$
        xpathButton = toolkit.createButton(typeComposite, "", SWT.PUSH);
        xpathButton.setImage(ImageCache.getCreatedImage(EImage.DOTS_BUTTON.getPath()));
        xpathButton.setToolTipText(Messages.entitySelectLabel);
        xpathButton.addSelectionListener(new SelectionListener() {

            public void widgetDefaultSelected(SelectionEvent e) {
            }

            public void widgetSelected(SelectionEvent e) {
                XpathSelectDialog xpathDialog;
                xpathDialog = getNewXpathDlg();
                xpathDialog.setBlockOnOpen(true);
                xpathDialog.open();
                if (xpathDialog.getReturnCode() == Window.OK) {
                    String xpath = xpathDialog.getXpath();
                    // $NON-NLS-1$
                    int index = xpathDialog.getXpath().indexOf("/");
                    if (index > 0) {
                        xpath = xpathDialog.getXpath().substring(0, index);
                    }
                    objectTypeText.setText(xpath);
                }
            }
        });
        // xpathWidget1 = new XpathWidget("...",treeParent, toolkit,
        // charComposite,(AMainPageV2)RoutingRuleMainPage.this,false,false,dataModelName);
        Composite paramComposite = toolkit.createComposite(charComposite);
        GridLayout pcLayout = new GridLayout(4, false);
        pcLayout.marginLeft = 0;
        pcLayout.horizontalSpacing = 0;
        paramComposite.setLayout(pcLayout);
        GridData pcLayoutData = new GridData(SWT.FILL, SWT.FILL, true, false);
        pcLayoutData.horizontalSpan = 2;
        pcLayoutData.horizontalIndent = 0;
        paramComposite.setLayoutData(pcLayoutData);
        // issynchronous Button
        isSynchronousButton = toolkit.createButton(paramComposite, Messages.executesynLabel, SWT.CHECK);
        GridData synBtnLayoutData = new GridData(SWT.FILL, SWT.FILL, false, true, 1, 1);
        synBtnLayoutData.horizontalIndent = 0;
        isSynchronousButton.setLayoutData(synBtnLayoutData);
        isSynchronousButton.addMouseListener(new MouseListener() {

            public void mouseUp(MouseEvent e) {
                orderLabel.setEnabled(isSynchronousButton.getSelection());
                orderText.setEnabled(isSynchronousButton.getSelection());
                if (isSynchronousButton.getSelection()) {
                    // $NON-NLS-1$
                    orderText.setText("0");
                } else {
                    // $NON-NLS-1$
                    orderText.setText("");
                }
                // mark for need to save
                markDirtyWithoutCommit();
            }

            public void mouseDoubleClick(MouseEvent e) {
            }

            public void mouseDown(MouseEvent e) {
            }
        });
        orderLabel = toolkit.createLabel(paramComposite, Messages.RoutingRuleMainPage_executeOrder);
        GridData olLayoutData = new GridData();
        olLayoutData.horizontalIndent = 10;
        orderLabel.setLayoutData(olLayoutData);
        orderLabel.setEnabled(false);
        // $NON-NLS-1$
        orderText = toolkit.createText(paramComposite, "", SWT.BORDER | SWT.SINGLE);
        GridData otLayoutData = new GridData(SWT.FILL, SWT.CENTER, false, false);
        otLayoutData.widthHint = 50;
        otLayoutData.horizontalIndent = 10;
        orderText.setLayoutData(otLayoutData);
        orderText.setEnabled(false);
        orderText.addModifyListener(new ModifyListener() {

            public void modifyText(ModifyEvent e) {
                markDirtyWithoutCommit();
            }
        });
        deactiveButton = toolkit.createButton(paramComposite, Messages.deactivateLabel, SWT.CHECK);
        GridData dbLayoutData = new GridData(SWT.BEGINNING, SWT.FILL, false, true, 1, 1);
        dbLayoutData.horizontalIndent = 25;
        deactiveButton.setLayoutData(dbLayoutData);
        deactiveButton.addMouseListener(new MouseListener() {

            public void mouseUp(MouseEvent e) {
                // mark for need to save
                markDirtyWithoutCommit();
            }

            public void mouseDoubleClick(MouseEvent e) {
            }

            public void mouseDown(MouseEvent e) {
            }
        });
        // Routing Expressions
        Composite serviceGroup = this.getNewSectionComposite(Messages.serviceLabel);
        serviceGroup.setLayout(new GridLayout(2, false));
        // Service Name
        Label serviceNameLabel = toolkit.createLabel(serviceGroup, Messages.serviceJndiLabel, SWT.NULL);
        serviceNameLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, true, 1, 1));
        Composite subPanel = toolkit.createComposite(serviceGroup);
        subPanel.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, true, 1, 1));
        subPanel.setLayout(new GridLayout(2, false));
        serviceNameCombo = new Combo(subPanel, SWT.DROP_DOWN | SWT.SINGLE | SWT.READ_ONLY);
        serviceNameCombo.setLayoutData(new GridData(SWT.LEFT, SWT.CENTER, false, true, 1, 1));
        ((GridData) serviceNameCombo.getLayoutData()).widthHint = 300;
        serviceNameCombo.addModifyListener(new ModifyListener() {

            public void modifyText(ModifyEvent e) {
                if (refreshing) {
                    return;
                }
                String serviceName = serviceNameCombo.getText();
                // $NON-NLS-1$
                String helpPara = "";
                if (!"".equals(serviceName) && !serviceName.equals(null)) {
                    // $NON-NLS-1$
                    if (EInputTemplate.getXtentisObjexts().get(serviceName) != null) {
                        helpPara = EInputTemplate.getXtentisObjexts().get(serviceName).getContent();
                    } else {
                        // $NON-NLS-1$
                        helpPara = "";
                    }
                }
                // serviceParametersText.setText(XmlUtil.formatXmlSource(helpPara));
                refreshParameterEditor(serviceName);
                serviceParametersEditor.setContent(XmlUtil.formatXmlSource(helpPara));
                markDirtyWithoutCommit();
                initParamterProposal(serviceNameCombo.getText());
            }
        });
        initServiceNameCombo();
        // default parameters button
        // $NON-NLS-1$
        defultParameterBtn = toolkit.createButton(subPanel, "", SWT.PUSH);
        defultParameterBtn.setImage(ImageCache.getCreatedImage(EImage.HELP_CONTENTS.getPath()));
        defultParameterBtn.setToolTipText(Messages.helpLabel);
        defultParameterBtn.setLayoutData(new GridData(SWT.FILL, SWT.FILL, false, true, 1, 1));
        defultParameterBtn.addSelectionListener(new SelectionListener() {

            public void widgetDefaultSelected(org.eclipse.swt.events.SelectionEvent e) {
            }

            public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) {
                if (serviceNameCombo.getText().trim().length() == 0) {
                    return;
                }
                // $NON-NLS-1$
                String doc = "";
                // $NON-NLS-1$
                String desc = "";
                // WSRoutingRule wsObject = (WSRoutingRule) (getXObject().getWSObject());
                try {
                    WSServiceGetDocument document = getServiceDocument(serviceNameCombo.getText().trim());
                    doc = document.getDocument();
                    desc = document.getDescription();
                } catch (Exception e1) {
                    // $NON-NLS-1$
                    doc = "N/A";
                } finally {
                    showUpDialog(desc, doc);
                }
            }

            private void showUpDialog(String desc, String doc) {
                final PluginDetailsDialog dialog = new PluginDetailsDialog(getSite().getShell(), desc, doc, null, Messages.documentionLabel);
                dialog.addListener(new Listener() {

                    public void handleEvent(Event event) {
                        dialog.close();
                    }
                });
                dialog.create();
                dialog.getShell().setText(serviceNameCombo.getText() + Messages.serviceDetailLabel);
                dialog.setBlockOnOpen(true);
                dialog.open();
            }
        });
        // Service Parameters
        Label serviceParametersLabel = toolkit.createLabel(serviceGroup, Messages.serviceParamLabel, SWT.NULL);
        serviceParametersLabel.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, true, 2, 1));
        serviceParametersEditor = new ExtensibleContentEditor(serviceGroup, SWT.MULTI | SWT.WRAP, EXCONTENTEDITOR_ID);
        GridData gdServiceParameter = new GridData(SWT.FILL, SWT.FILL, true, true, 2, 1);
        // gdServiceParameter.widthHint = 200;
        gdServiceParameter.heightHint = 200;
        serviceParametersEditor.setLayoutData(gdServiceParameter);
        parameterEditorListener = new ParameterEditorListener();
        // serviceParametersText = toolkit.createText(serviceGroup, "",SWT.BORDER|SWT.MULTI|SWT.V_SCROLL|SWT.WRAP);
        // serviceParametersText.setLayoutData(
        // new GridData(SWT.FILL,SWT.FILL,true,false,2,1)
        // );
        // ((GridData) serviceParametersText.getLayoutData()).widthHint = 200;
        // ((GridData) serviceParametersText.getLayoutData()).heightHint = 120;
        // serviceParametersText.addModifyListener(new ModifyListener() {
        // 
        // public void modifyText(ModifyEvent e) {
        // if (refreshing)
        // return;
        // markDirtyWithoutCommit();
        // }
        // });
        // // add by ymli.fix the bug:0011830. We can reuse the same ctrl+space in trigger configs.
        // serviceParametersText.addKeyListener(new KeyListener() {
        // 
        // public void keyReleased(KeyEvent event) {
        // 
        // // System.out.println("SWT.CTRL:"+SWT.CTRL);
        // int start = serviceParametersText.getSelection().x;
        // int end = serviceParametersText.getSelection().y;
        // if (event.stateMask == SWT.CTRL && event.keyCode == 17) {
        // // if(event.keyCode == SWT.F2){
        // ResourceSelectDialog dialog = new ResourceSelectDialog(getSite().getShell(), treeParent.getParent(),
        // "Select a resource node", ServerView.show().getSite());
        // dialog.setBlockOnOpen(true);
        // dialog.open();
        // if (dialog.getReturnCode() == Window.OK) {
        // String xpath = dialog.getXpath();
        // String textHead = serviceParametersText.getText(0, start - 1);
        // String textEnd = serviceParametersText.getText(end, serviceParametersText.getText().length());
        // serviceParametersText.setText(textHead + xpath + textEnd);
        // serviceParametersText.setSelection(start, start + xpath.length());
        // markDirtyWithoutCommit();
        // }
        // }
        // }
        // 
        // public void keyPressed(KeyEvent e) {
        // }
        // });
        // Routing Expressions
        Composite routingExpressionsGroup = this.getNewSectionComposite(Messages.triggerExpressionLabel);
        routingExpressionsGroup.setLayout(new GridLayout(1, true));
        conditionsColumns[0].setColumnWidth(250);
        conditionsColumns[1].setColumnWidth(150);
        conditionsColumns[2].setColumnWidth(250);
        conditionsColumns[3].setColumnWidth(120);
        conditionViewer = getNewTisTableViewer(toolkit, routingExpressionsGroup);
        TreeParent treeParent = (TreeParent) getAdapter(TreeParent.class);
        conditionViewer.setTreeParent(treeParent);
        // $NON-NLS-1$
        conditionViewer.setDatamodelName("UpdateReport");
        conditionViewer.setXpath(true);
        conditionViewer.setMainPage(this);
        conditionViewer.setAddMulti(true);
        conditionViewer.create();
        conditionViewer.setHeight(110);
        // and or not condition
        ConditionWidget conditionWidget = new ConditionWidget(routingExpressionsGroup, toolkit, this);
        conditionText = conditionWidget.getConditionText();
        conditionText.addModifyListener(new ModifyListener() {

            public void modifyText(ModifyEvent e) {
                if (!refreshing) {
                    markDirtyWithoutCommit();
                }
            }
        });
        wrap.Wrap(this, conditionViewer);
        // make the Page window a DropTarget - we need to dispose it
        windowTarget = new DropTarget(this.getPartControl(), DND.DROP_MOVE);
        windowTarget.setTransfer(new Transfer[] { TextTransfer.getInstance() });
        windowTarget.addDropListener(new DCDropTargetListener());
        refreshData();
        conditionText.addFocusListener(new FocusListener() {

            public void focusLost(FocusEvent e) {
            // adapter.resetPosition();
            }

            public void focusGained(FocusEvent e) {
                initConditionProposal();
            }
        });
    } catch (Exception e) {
        log.error(e.getMessage(), e);
    }
}
Also used : ExtensibleContentEditor(com.amalto.workbench.widgets.xmleditor.ExtensibleContentEditor) ExtensibleContentEditorPageListener(com.amalto.workbench.widgets.xmleditor.ExtensibleContentEditorPageListener) MouseListener(org.eclipse.swt.events.MouseListener) SelectionListener(org.eclipse.swt.events.SelectionListener) DragSourceListener(org.eclipse.swt.dnd.DragSourceListener) FocusListener(org.eclipse.swt.events.FocusListener) Listener(org.eclipse.swt.widgets.Listener) DropTargetListener(org.eclipse.swt.dnd.DropTargetListener) ModifyListener(org.eclipse.swt.events.ModifyListener) ModifyListener(org.eclipse.swt.events.ModifyListener) XpathSelectDialog(com.amalto.workbench.dialogs.XpathSelectDialog) TreeParent(com.amalto.workbench.models.TreeParent) Label(org.eclipse.swt.widgets.Label) Combo(org.eclipse.swt.widgets.Combo) WSString(com.amalto.workbench.webservices.WSString) FocusEvent(org.eclipse.swt.events.FocusEvent) ModifyEvent(org.eclipse.swt.events.ModifyEvent) GridLayout(org.eclipse.swt.layout.GridLayout) MouseListener(org.eclipse.swt.events.MouseListener) SelectionEvent(org.eclipse.swt.events.SelectionEvent) WSServiceGetDocument(com.amalto.workbench.webservices.WSServiceGetDocument) MouseEvent(org.eclipse.swt.events.MouseEvent) Composite(org.eclipse.swt.widgets.Composite) PluginDetailsDialog(com.amalto.workbench.dialogs.PluginDetailsDialog) XtentisException(com.amalto.workbench.utils.XtentisException) ConditionWidget(com.amalto.workbench.widgets.ConditionWidget) GridData(org.eclipse.swt.layout.GridData) FocusEvent(org.eclipse.swt.events.FocusEvent) DropTargetEvent(org.eclipse.swt.dnd.DropTargetEvent) ModifyEvent(org.eclipse.swt.events.ModifyEvent) MouseEvent(org.eclipse.swt.events.MouseEvent) DragSourceEvent(org.eclipse.swt.dnd.DragSourceEvent) TextEvent(java.awt.event.TextEvent) Event(org.eclipse.swt.widgets.Event) SelectionEvent(org.eclipse.swt.events.SelectionEvent) SelectionEvent(org.eclipse.swt.events.SelectionEvent) DropTarget(org.eclipse.swt.dnd.DropTarget) FocusListener(org.eclipse.swt.events.FocusListener) SelectionListener(org.eclipse.swt.events.SelectionListener)

Aggregations

PluginDetailsDialog (com.amalto.workbench.dialogs.PluginDetailsDialog)2 WSString (com.amalto.workbench.webservices.WSString)2 ModifyEvent (org.eclipse.swt.events.ModifyEvent)2 ModifyListener (org.eclipse.swt.events.ModifyListener)2 SelectionEvent (org.eclipse.swt.events.SelectionEvent)2 SelectionListener (org.eclipse.swt.events.SelectionListener)2 GridData (org.eclipse.swt.layout.GridData)2 GridLayout (org.eclipse.swt.layout.GridLayout)2 Combo (org.eclipse.swt.widgets.Combo)2 Composite (org.eclipse.swt.widgets.Composite)2 Event (org.eclipse.swt.widgets.Event)2 Label (org.eclipse.swt.widgets.Label)2 Listener (org.eclipse.swt.widgets.Listener)2 XpathSelectDialog (com.amalto.workbench.dialogs.XpathSelectDialog)1 TreeParent (com.amalto.workbench.models.TreeParent)1 XtentisException (com.amalto.workbench.utils.XtentisException)1 WSServiceGetDocument (com.amalto.workbench.webservices.WSServiceGetDocument)1 ConditionWidget (com.amalto.workbench.widgets.ConditionWidget)1 ExtensibleContentEditor (com.amalto.workbench.widgets.xmleditor.ExtensibleContentEditor)1 ExtensibleContentEditorPageListener (com.amalto.workbench.widgets.xmleditor.ExtensibleContentEditorPageListener)1