96c02bccd3
Missed tests for 6783290,6937053,7009998 Reviewed-by: sjiang, emcmanus
10 lines
267 B
Java
10 lines
267 B
Java
|
|
import javax.management.NotificationBroadcasterSupport;
|
|
|
|
public class Ste extends NotificationBroadcasterSupport implements SteMBean {
|
|
private long count = 0;
|
|
|
|
public void foo() {
|
|
sendNotification(new TestNotification("test", this, count++));
|
|
}
|
|
} |