Package com.eviware.soapui.ui.support

Examples of com.eviware.soapui.ui.support.DefaultDesktopPanel


  protected void showReport( File reportFile, String configFile ) throws Exception
  {
    WSIReportPanel panel = new WSIReportPanel( reportFile, configFile, null, true );
    panel.setPreferredSize( new Dimension( 600, 400 ) );

    UISupport.showDesktopPanel( new DefaultDesktopPanel( "WS-I Report", "WS-I Report for Interface ["
        + getModelItem().getName() + "]", panel ) );
  }
View Full Code Here


            {
              WSIReportPanel panel = new WSIReportPanel( WSIAnalyzeAction.transformReport( reportFile ),
                  configFile, logFile, true );
              panel.setPreferredSize( new Dimension( 600, 400 ) );

              UISupport.showDesktopPanel( new DefaultDesktopPanel( "WS-I Report",
                  "WS-I Report for validation of messages in request [" + modelItem.getName() + "]", panel ) );
            }
            catch( Exception e )
            {
              UISupport.showErrorMessage( e );
View Full Code Here

  private DesktopPanel buildFrame()
  {
    if( desktopPanel == null )
    {
      desktopPanel = new DefaultDesktopPanel( "TestStep Result", "TestStep result for "
          + result.getTestStep().getName(), buildContent() );
    }

    return desktopPanel;
  }
View Full Code Here

  private DesktopPanel buildFrame()
  {
    if( desktopPanel == null )
    {
      String title = "Mock Result for [" + result.getMockResponse().getName() + "]";
      desktopPanel = new DefaultDesktopPanel( title, title, buildContent() );
    }

    return desktopPanel;
  }
View Full Code Here

        if( exitCode == 0 && context.getStatus() == RunnerContext.RunnerStatus.FINISHED )
        {
          WSIReportPanel panel = new WSIReportPanel( reportFile, configFile, logFile, true );
          panel.setPreferredSize( new Dimension( 600, 400 ) );

          UISupport.showDesktopPanel( new DefaultDesktopPanel( "WS-I Report",
              "WS-I Report for validation of messages in MockResponse [" + modelItem.getName() + "]", panel ) );
        }
      }
      catch( Exception e )
      {
View Full Code Here

    }

    private DesktopPanel buildFrame() {
        if (desktopPanel == null) {
            String title = "Mock Result for [" + result.getMockResponse().getName() + "]";
            desktopPanel = new DefaultDesktopPanel(title, title, buildContent());
        }

        return desktopPanel;
    }
View Full Code Here

                        try {
                            WSIReportPanel panel = new WSIReportPanel(WSIAnalyzeAction.transformReport(reportFile),
                                    configFile, logFile, true);
                            panel.setPreferredSize(new Dimension(600, 400));

                            UISupport.showDesktopPanel(new DefaultDesktopPanel("WS-I Report",
                                    "WS-I Report for validation of messages in request [" + modelItem.getName() + "]", panel));
                        } catch (Exception e) {
                            UISupport.showErrorMessage(e);
                        }
                    }
View Full Code Here

            try {
                if (exitCode == 0 && context.getStatus() == RunnerContext.RunnerStatus.FINISHED) {
                    WSIReportPanel panel = new WSIReportPanel(reportFile, configFile, logFile, true);
                    panel.setPreferredSize(new Dimension(600, 400));

                    UISupport.showDesktopPanel(new DefaultDesktopPanel("WS-I Report",
                            "WS-I Report for validation of messages in MockResponse [" + modelItem.getName() + "]", panel));
                }
            } catch (Exception e) {
                UISupport.showErrorMessage(e);
            }
View Full Code Here

    protected void showReport(File reportFile, String configFile) throws Exception {
        WSIReportPanel panel = new WSIReportPanel(reportFile, configFile, null, true);
        panel.setPreferredSize(new Dimension(600, 400));

        UISupport.showDesktopPanel(new DefaultDesktopPanel("WS-I Report", "WS-I Report for Interface ["
                + getModelItem().getName() + "]", panel));
    }
View Full Code Here

        return UISupport.showDesktopPanel(buildFrame());
    }

    private DesktopPanel buildFrame() {
        if (desktopPanel == null) {
            desktopPanel = new DefaultDesktopPanel("TestStep Result", "TestStep result for "
                    + result.getTestStep().getName(), buildContent());
        }

        return desktopPanel;
    }
View Full Code Here

TOP

Related Classes of com.eviware.soapui.ui.support.DefaultDesktopPanel

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.