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 100677 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jst/ws/internal/consumption/ui/widgets/runtime/ClientRuntimeSelectionWidget.java (-4 / +8 lines)
Lines 11-17 Link Here
11
package org.eclipse.jst.ws.internal.consumption.ui.widgets.runtime;
11
package org.eclipse.jst.ws.internal.consumption.ui.widgets.runtime;
12
12
13
import org.eclipse.jst.ws.internal.consumption.ui.common.ValidationUtils;
13
import org.eclipse.jst.ws.internal.consumption.ui.common.ValidationUtils;
14
import org.eclipse.jst.ws.internal.consumption.ui.wizard.ClientProjectTypeRegistry;
15
import org.eclipse.jst.ws.internal.data.TypeRuntimeServer;
14
import org.eclipse.jst.ws.internal.data.TypeRuntimeServer;
16
import org.eclipse.jst.ws.internal.ui.common.UIUtils;
15
import org.eclipse.jst.ws.internal.ui.common.UIUtils;
17
import org.eclipse.swt.SWT;
16
import org.eclipse.swt.SWT;
Lines 199-205 Link Here
199
198
200
  public SelectionListChoices getRuntime2ClientTypes()
199
  public SelectionListChoices getRuntime2ClientTypes()
201
  {
200
  {
202
    ClientProjectTypeRegistry registry = ClientProjectTypeRegistry.getInstance();
203
    
201
    
204
    String runtime       = runtimeWidget_.getTypeRuntimeServer().getRuntimeId();
202
    String runtime       = runtimeWidget_.getTypeRuntimeServer().getRuntimeId();
205
    String clientProject = projectWidget_.getProjectChoices().getList().getSelection();
203
    String clientProject = projectWidget_.getProjectChoices().getList().getSelection();
Lines 344-351 Link Here
344
      ValidationUtils valUtils = new ValidationUtils();
342
      ValidationUtils valUtils = new ValidationUtils();
345
      if (clientProjects != null)
343
      if (clientProjects != null)
346
      {
344
      {
347
    	  String clientEARName = getClientEarProjectName();
345
          String clientEARName = projectWidget_.getEarProjectName();
348
    	  String clientProjName = getClientProjectName();
346
          if (clientEARName == null){
347
            clientProjects.getChoice().getList().getSelection();
348
          }
349
          String clientProjName = projectWidget_.getProjectName();
350
          if (clientProjName == null){
351
            clientProjName = clientProjects.getList().getSelection();
352
          }
349
        
353
        
350
        String clientCompName = projectWidget_.getComponentName();
354
        String clientCompName = projectWidget_.getComponentName();
351
        String clientEARCompName = projectWidget_.getEarComponentName();
355
        String clientEARCompName = projectWidget_.getEarComponentName();

Return to bug 100677