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

Collapse All | Expand All

(-)ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/HintTextGroup.java (-6 lines)
Lines 150-161 Link Here
150
    public void setJavaProject(IJavaProject jProject) {
150
    public void setJavaProject(IJavaProject jProject) {
151
        fCurrJProject= jProject;
151
        fCurrJProject= jProject;
152
        fOldOutputLocation= fOutputLocationField.getText();
152
        fOldOutputLocation= fOutputLocationField.getText();
153
        
154
        try {
155
			fActionGroup.getResetAllAction().setBreakPoint(fCurrJProject);        	
156
        } catch (JavaModelException e) {
157
	     	JavaPlugin.log(e);
158
        }
159
    }
153
    }
160
    
154
    
161
    /**
155
    /**
(-)ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/DialogPackageExplorerActionGroup.java (-7 lines)
Lines 167-173 Link Here
167
	private final ClasspathModifierDropDownAction fDropDownAction;
167
	private final ClasspathModifierDropDownAction fDropDownAction;
168
	private final CreateLinkedSourceFolderAction fCreateLinkedSourceFolderAction;
168
	private final CreateLinkedSourceFolderAction fCreateLinkedSourceFolderAction;
169
	private final CreateSourceFolderAction fCreateSourceFolderAction;
169
	private final CreateSourceFolderAction fCreateSourceFolderAction;
170
	private final ResetAllAction fResetAllAction;
171
    
170
    
172
    /**
171
    /**
173
     * Constructor which creates the operations and based on this 
172
     * Constructor which creates the operations and based on this 
Lines 223-229 Link Here
223
        fCreateSourceFolderAction= new CreateSourceFolderAction2(listener, provider, context);
222
        fCreateSourceFolderAction= new CreateSourceFolderAction2(listener, provider, context);
224
		selectionProvider.addSelectionChangedListener(fCreateSourceFolderAction);
223
		selectionProvider.addSelectionChangedListener(fCreateSourceFolderAction);
225
224
226
        fResetAllAction= new ResetAllAction(listener, provider, context);
227
        
225
        
228
        //options:
226
        //options:
229
        //AddArchiveToBuildpathAction
227
        //AddArchiveToBuildpathAction
Lines 283-289 Link Here
283
        
281
        
284
        tbm.add(fCreateLinkedSourceFolderAction);
282
        tbm.add(fCreateLinkedSourceFolderAction);
285
        tbm.add(fCreateSourceFolderAction);
283
        tbm.add(fCreateSourceFolderAction);
286
        tbm.add(fResetAllAction);
287
        
284
        
288
        tbm.update(true);
285
        tbm.update(true);
289
        return tbm;
286
        return tbm;
Lines 728-737 Link Here
728
        super.dispose();
725
        super.dispose();
729
    }
726
    }
730
727
731
	public ResetAllAction getResetAllAction() {
732
	    return fResetAllAction;
733
    }
734
735
	public EditOutputFolderAction getEditOutputFolderAction() {
728
	public EditOutputFolderAction getEditOutputFolderAction() {
736
	    return fEditOutputFolderAction;
729
	    return fEditOutputFolderAction;
737
    }
730
    }

Return to bug 150922