10 lines
267 B
Java
Raw Normal View History

import javax.management.NotificationBroadcasterSupport;
public class Ste extends NotificationBroadcasterSupport implements SteMBean {
private long count = 0;
public void foo() {
sendNotification(new TestNotification("test", this, count++));
}
}