diff -r adbe1c55d078 -r 5e9eb5d9de14 jdk/test/com/sun/jmx/remote/NotificationMarshalVersions/Server/Ste.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/jdk/test/com/sun/jmx/remote/NotificationMarshalVersions/Server/Ste.java Thu Dec 20 20:12:32 2012 +0400 @@ -0,0 +1,10 @@ + +import javax.management.NotificationBroadcasterSupport; + +public class Ste extends NotificationBroadcasterSupport implements SteMBean { + private long count = 0; + + public void foo() { + sendNotification(new TestNotification("test", this, count++)); + } +} \ No newline at end of file