Add NoOp{Listener,Object}Registration
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / ListenerRegistration.java
index 22ab06926897c763796fb181a06ea0c81a74fedb..02d0d609259a08e35ef6e71fda1fc52ecdaf6df3 100644 (file)
@@ -12,6 +12,8 @@ import java.util.EventListener;
 /**
  * Class representing a {@link Registration} of an {@link EventListener}. This interface provides the additional
  * guarantee that the process of unregistration cannot fail for predictable reasons.
+ *
+ * @param <T> Type of registered listener
  */
 public interface ListenerRegistration<T extends EventListener> extends ObjectRegistration<T> {
     /**