HHH-6417 Implement EventType#toString

This commit is contained in:
Emmanuel Bernard 2011-07-07 23:51:57 +02:00
parent b600f027a4
commit c48d4208db
1 changed files with 5 additions and 0 deletions

View File

@ -192,4 +192,9 @@ public class EventType<T> {
public Class baseListenerInterface() {
return baseListenerInterface;
}
@Override
public String toString() {
return eventName();
}
}