Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2523dcf5f47ee4538491d4d5ce3160092c0a3993 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
* <copyright>
*
* Licensed Material - Property of IBM
* (C) Copyright IBM Corp. 2000, 2002 - All Rights Reserved.
* US Government Users Restricted Rights - Use, duplication or disclosure
* restricted by GSA ADP Schedule Contract with IBM Corp.
*
* </copyright>
*/

package org.eclipse.jst.ws.internal.ext.test;

public interface WSDLTestFinishCommand extends WebServiceTestFinishCommand
{
  public void setServiceProject(String serverProject);
  public void setWsdlServiceURL(String wsdlURI);
  public void setExternalBrowser(boolean external); 
}

Back to the top