Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7e36a1aff5bc42e1550a7bab9203fbdcc86e4c5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.eclipse.jdt.internal.core.builder;

public class SearchProgressEvent extends java.util.EventObject {
	String name;
/**
 * Creates a new <code>SearchProgressEvent</code> with the fully-qualified 
 * name of the package or type that is now being searched.
 */
public SearchProgressEvent(String name) {
	super(name);
	this.name = name;
}
/**
 * Returns the name of the package or type that this
 * progress event represents.
 */
public String getName() {
	return name;
}
}

Back to the top