Migrate statements to JDT annotations
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / NotificationStatementContainer.java
index c59afb586fe5427688442d07e7efc5d7c569f38e..64087d9910ded9ca4c0867f1f51df8cd0a5b0ba7 100644 (file)
@@ -9,7 +9,7 @@
 package org.opendaylight.yangtools.yang.model.api.stmt;
 
 import java.util.Collection;
-import javax.annotation.Nonnull;
+import org.eclipse.jdt.annotation.NonNull;
 
 /**
  * Marker interface for statements which may contain a 'notification' statement, as defined in RFC7950. There is
@@ -25,5 +25,5 @@ public interface NotificationStatementContainer {
      *
      * @return collection of notification statements
      */
-    @Nonnull Collection<? extends NotificationStatement> getNotifications();
+    @NonNull Collection<? extends NotificationStatement> getNotifications();
 }