Introduce javax.annonations to concepts
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / Path.java
index d73326432d5f97eb6d2279e91de3b9c80cc7fd5d..394f1b493ef43e8f9f906826ea17ad3737cc1f60 100644 (file)
@@ -7,7 +7,23 @@
  */
 package org.opendaylight.yangtools.concepts;
 
-public interface Path<P extends Path<P>> {
+import javax.annotation.Nonnull;
 
-    boolean contains(P other);
+/**
+ * Conceptual representation of a logical path in a tree-like structure, similar to a
+ * {@link java.nio.file.Path}, but more general in terms of what objects it can be applied to.
+ * Paths have an equivalence class, which is captured in the defining type. Paths also have the
+ * notion of containment, where one path is said to contain another path if it the data set
+ * identified by the former contains all elements of the data set represented by later.
+ *
+ * @param <P> Path equivalence class
+ */
+public interface Path<P extends Path<P>> {
+    /**
+     * Check if this path contains some other.
+     *
+     * @param other Other path, may not be null.
+     * @return True if this path contains the other.
+     */
+    boolean contains(@Nonnull P other);
 }