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 116469
Collapse All | Expand All

(-)ejb_ui/org/eclipse/jst/ejb/ui/project/facet/EjbFacetInstallPage.java (-11 lines)
Lines 33-40 Link Here
33
33
34
    private static final String MODULE_NAME_UI = J2EEUIMessages.getResourceString(J2EEUIMessages.NAME_LABEL);
34
    private static final String MODULE_NAME_UI = J2EEUIMessages.getResourceString(J2EEUIMessages.NAME_LABEL);
35
    
35
    
36
	private Text configFolder;
37
	private Label configFolderLabel;
38
	protected Button addClient;	
36
	protected Button addClient;	
39
    protected Text clientNameText = null;  
37
    protected Text clientNameText = null;  
40
	private Label clientJarURILabel;
38
	private Label clientJarURILabel;
Lines 58-72 Link Here
58
56
59
		//setupEarControl(composite);
57
		//setupEarControl(composite);
60
		
58
		
61
		this.configFolderLabel = new Label(composite, SWT.NONE);
62
		this.configFolderLabel.setText(J2EEUIMessages.getResourceString(J2EEUIMessages.SOURCEFOLDER));
63
		this.configFolderLabel.setLayoutData(gdhfill());
64
		
65
		this.configFolder = new Text(composite, SWT.BORDER);
66
		this.configFolder.setLayoutData(gdhfill());
67
		this.configFolder.setData("label", this.configFolderLabel); //$NON-NLS-1$
68
		synchHelper.synchText(configFolder, CONFIG_FOLDER, null);
69
		
70
		createEJBClientGroup( composite );
59
		createEJBClientGroup( composite );
71
		createProjectNameGroup( composite );
60
		createProjectNameGroup( composite );
72
		createClientJarURISection( composite );
61
		createClientJarURISection( composite );
(-)ejbcreation/org/eclipse/jst/j2ee/internal/ejb/project/operations/EjbFacetInstallDataModelProvider.java (-1 / +12 lines)
Lines 12-18 Link Here
12
12
13
import java.util.Set;
13
import java.util.Set;
14
14
15
import org.eclipse.core.runtime.IPath;
15
import org.eclipse.core.runtime.IStatus;
16
import org.eclipse.core.runtime.IStatus;
17
import org.eclipse.core.runtime.Path;
16
import org.eclipse.jst.j2ee.internal.J2EEVersionConstants;
18
import org.eclipse.jst.j2ee.internal.J2EEVersionConstants;
17
import org.eclipse.jst.j2ee.internal.plugin.IJ2EEModuleConstants;
19
import org.eclipse.jst.j2ee.internal.plugin.IJ2EEModuleConstants;
18
import org.eclipse.jst.j2ee.internal.plugin.J2EEPlugin;
20
import org.eclipse.jst.j2ee.internal.plugin.J2EEPlugin;
Lines 135-141 Link Here
135
	    		}
137
	    		}
136
	    	}
138
	    	}
137
	    	model.notifyPropertyChange(CREATE_CLIENT, IDataModel.ENABLE_CHG);
139
	    	model.notifyPropertyChange(CREATE_CLIENT, IDataModel.ENABLE_CHG);
138
	    }
140
        } else if (propertyName.equals(CONFIG_FOLDER)) 
141
        {
142
            if( this.javaFacetInstallConfig != null )
143
            {
144
                final IPath sourceFolder
145
                    = propertyValue == null ? null : new Path( (String) propertyValue );
146
                
147
                this.javaFacetInstallConfig.setSourceFolder( sourceFolder );
148
            }
149
        }
139
150
140
		return status;
151
		return status;
141
	}	
152
	}	

Return to bug 116469