corrected sampe code in documentation

This commit is contained in:
benni 2012-10-28 09:27:04 +01:00
parent d2a6395d48
commit a6b436beb6

View File

@ -45,7 +45,7 @@ Listener definition (in any bean):
// this handler will receive events of type SubTestEvent
// or any subtabe and that passes the given filter(s)
@Listener({@Filter(value = SpecialEventsOnly.class),@Filter(value = SpecialEventsOnly.class)})
@Listener({@Filter(SpecialEventsOnly.class),@Filter(SpecialEventsOnly.class)})
public void handleFiltered(SubTestEvent event) {
//do something special here
}