Jaroslav Bachorik 96c02bccd3 8005309: Missed tests for 6783290,6937053,7009998
Missed tests for 6783290,6937053,7009998

Reviewed-by: sjiang, emcmanus
2012-12-20 20:12:32 +04:00

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++));
}
}