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

(-)src/org/eclipse/hyades/test/tools/ui/java/internal/junit/navigator/RegularJUnitProvider.java (+10 lines)
Lines 41-46 Link Here
41
/**
41
/**
42
 * A provider showing Java projects content, with non-JUnit classes filtered out.
42
 * A provider showing Java projects content, with non-JUnit classes filtered out.
43
 * @author jcanches
43
 * @author jcanches
44
 * @author Paul E. Slauenwhite
45
 * @version October 20, 2007
44
 * @since 4.3
46
 * @since 4.3
45
 */
47
 */
46
public class RegularJUnitProvider implements ITypeProvider, IElementChangedListener, IDisposable, IJUnitTestSuiteFactoryListener {
48
public class RegularJUnitProvider implements ITypeProvider, IElementChangedListener, IDisposable, IJUnitTestSuiteFactoryListener {
Lines 150-155 Link Here
150
	/**
152
	/**
151
	 * Basic JavaElementDelta that describes a change to an element, with a set of children
153
	 * Basic JavaElementDelta that describes a change to an element, with a set of children
152
	 * deltas.
154
	 * deltas.
155
	 * 
156
     * @author jcanches
157
     * @author Paul E. Slauenwhite
158
     * @version October 20, 2007
159
     * @since 4.3
153
	 */
160
	 */
154
	static class BasicJavaElementChangeDelta implements IJavaElementDelta {
161
	static class BasicJavaElementChangeDelta implements IJavaElementDelta {
155
		// These constants should not collide with JDT's ones (hopefully, unless JDT defines
162
		// These constants should not collide with JDT's ones (hopefully, unless JDT defines
Lines 199-204 Link Here
199
		public IResourceDelta[] getResourceDeltas() {
206
		public IResourceDelta[] getResourceDeltas() {
200
			return null;
207
			return null;
201
		}
208
		}
209
		public IJavaElementDelta[] getAnnotationDeltas(){
210
			return null;
211
		}
202
	}
212
	}
203
	
213
	
204
	private IJavaElementDelta makeDeltaTree(IJUnitTestSuiteFactoryEvent event) {
214
	private IJavaElementDelta makeDeltaTree(IJUnitTestSuiteFactoryEvent event) {

Return to bug 207972