Package com.eviware.soapui.impl.rest.panels.component

Examples of com.eviware.soapui.impl.rest.panels.component.RestResourceEditor


    @Override
    protected void initializeFields() {
        String path = getRequest().getResource().getFullPath();
        updating = new MutableBoolean();
        resourcePanel = new TextPanelWithTopLabel("Resource", path, new RestResourceEditor(getRequest().getResource(), updating));
        queryPanel = new ParametersField(getRequest());
    }
View Full Code Here


        toolbar.addFixed(createActionButton(SwingActionDelegate.createDelegate(NewRestMethodAction.SOAPUI_ACTION_ID,
                getModelItem(), null, "/create_empty_method.gif"), true));

        toolbar.addSeparator();

        pathTextField = new RestResourceEditor(getModelItem(), updating);

        toolbar.addFixed(new JLabel("Resource Path"));
        toolbar.addSeparator(new Dimension(3, 3));
        toolbar.addWithOnlyMinimumHeight(pathTextField);
View Full Code Here

TOP

Related Classes of com.eviware.soapui.impl.rest.panels.component.RestResourceEditor

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.