Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 152701 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jst/ws/internal/consumption/ui/widgets/object/WSDLSelectionWidget.java (-5 / +11 lines)
Lines 17-22 Link Here
17
 * 20060607   144932 kathy@ca.ibm.com - Kathy Chan
17
 * 20060607   144932 kathy@ca.ibm.com - Kathy Chan
18
 * 20060612   145081 pmoogk@ca.ibm.com - Peter Moogk
18
 * 20060612   145081 pmoogk@ca.ibm.com - Peter Moogk
19
 * 20060719   139977 kathy@ca.ibm.com - Kathy Chan
19
 * 20060719   139977 kathy@ca.ibm.com - Kathy Chan
20
 * 20060803   152701 cbrealey@ca.ibm.com - Chris Brealey
20
 *******************************************************************************/
21
 *******************************************************************************/
21
package org.eclipse.jst.ws.internal.consumption.ui.widgets.object;
22
package org.eclipse.jst.ws.internal.consumption.ui.widgets.object;
22
23
Lines 193-198 Link Here
193
    validationSummaryText_ = new Text( parent, SWT.WRAP);
194
    validationSummaryText_ = new Text( parent, SWT.WRAP);
194
    validationSummaryText_.setEditable(false);
195
    validationSummaryText_.setEditable(false);
195
    GridData gd1 = new GridData(GridData.FILL_BOTH);
196
    GridData gd1 = new GridData(GridData.FILL_BOTH);
197
    gd1.minimumHeight = SWT.DEFAULT;
196
    validationSummaryText_.setLayoutData(gd1);
198
    validationSummaryText_.setLayoutData(gd1);
197
    validationSummaryText_.setToolTipText( ConsumptionUIMessages.TOOLTIP_VALIDATE_TEXT_MESSAGE_SUMMARY );
199
    validationSummaryText_.setToolTipText( ConsumptionUIMessages.TOOLTIP_VALIDATE_TEXT_MESSAGE_SUMMARY );
198
    
200
    
Lines 385-400 Link Here
385
    	 boolean isRemote = true;
387
    	 boolean isRemote = true;
386
    	if (tree.isEnabled()) { // is wsil
388
    	if (tree.isEnabled()) { // is wsil
387
    		wsdlURI1 = tree.getWsdlURI();
389
    		wsdlURI1 = tree.getWsdlURI();
388
    		if (wsdlURI1.startsWith("file:")) {
390
    		if (wsdlURI1.startsWith("file:") || wsdlURI1.startsWith("platform:"))
391
    		{
389
    			isRemote = false;
392
    			isRemote = false;
390
    		}
393
    		}
391
    	} else { // is wsil
394
    	} else {
392
    	
395
    		if (wsPath.indexOf(':') < 0)
393
    		if( wsPath.indexOf(':') < 0 )
396
    		{
394
    		{      	// not remote
395
    			isRemote = false;
397
    			isRemote = false;
396
    			wsdlURI1 = iFile2URI((IFile)ResourceUtils.findResource(wsPath));
398
    			wsdlURI1 = iFile2URI((IFile)ResourceUtils.findResource(wsPath));
397
    		}
399
    		}
400
    		else if (wsPath.startsWith("file:") || wsPath.startsWith("platform:"))
401
    		{
402
    			isRemote = false;
403
    		}
398
    	}
404
    	}
399
  	  
405
  	  
400
      setMessageSummary();
406
      setMessageSummary();

Return to bug 152701