Fixed Checkstyle violation errors in mdsal-dom-api module
[mdsal.git] / dom / mdsal-dom-api / src / main / java / org / opendaylight / mdsal / dom / api / DOMDataTreeChangeService.java
index bbe4da3cfae2f758a167e4687e4276285fa2abf2..e08892f1fb88ad427accf6d17edbf40ca8be1964 100644 (file)
@@ -18,13 +18,15 @@ public interface DOMDataTreeChangeService extends DOMDataBrokerExtension {
     /**
      * Registers a {@link DOMDataTreeChangeListener} to receive notifications when data changes
      * under a given path in the conceptual data tree.
+     *
      * <p>
      * You are able to register for notifications for any node or subtree which can be represented
      * using {@link DOMDataTreeIdentifier}.
-     * <p>
      *
+     * <p>
      * You are able to register for data change notifications for a subtree or leaf even if it does
      * not exist. You will receive notification once that node is created.
+     *
      * <p>
      * If there is any pre-existing data in the data tree for the path for which you are
      * registering, you will receive an initial data change event, which will contain all
@@ -33,6 +35,7 @@ public interface DOMDataTreeChangeService extends DOMDataBrokerExtension {
      * <p>
      * This method returns a {@link ListenerRegistration} object. To "unregister" your listener for
      * changes call the {@link ListenerRegistration#close()} method on the returned object.
+     *
      * <p>
      * You MUST explicitly unregister your listener when you no longer want to receive
      * notifications. This is especially true in OSGi environments, where failure to do so during
@@ -44,5 +47,6 @@ public interface DOMDataTreeChangeService extends DOMDataBrokerExtension {
      * @return Listener registration object, which may be used to unregister your listener using
      *         {@link ListenerRegistration#close()} to stop delivery of change events.
      */
-    @Nonnull <L extends DOMDataTreeChangeListener> ListenerRegistration<L> registerDataTreeChangeListener(@Nonnull DOMDataTreeIdentifier treeId, @Nonnull L listener);
+    @Nonnull <L extends DOMDataTreeChangeListener> ListenerRegistration<L>
+                          registerDataTreeChangeListener(@Nonnull DOMDataTreeIdentifier treeId, @Nonnull L listener);
 }