Bug 2366 - Effective statements impl for new yang parser.
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / SchemaContext.java
index 2bb1d993d9f12dcb2f486aa5064b0129d7177386..dec334dc7f420404deb81fed0a1bdb273c17a8b0 100644 (file)
@@ -8,12 +8,11 @@
 package org.opendaylight.yangtools.yang.model.api;
 
 import com.google.common.base.Optional;
-import javax.annotation.concurrent.Immutable;
-import org.opendaylight.yangtools.yang.common.QName;
-
 import java.net.URI;
 import java.util.Date;
 import java.util.Set;
+import javax.annotation.concurrent.Immutable;
+import org.opendaylight.yangtools.yang.common.QName;
 
 /**
  * The interface represents static view of compiled yang files,
@@ -25,7 +24,9 @@ import java.util.Set;
  */
 @Immutable
 public interface SchemaContext extends ContainerSchemaNode {
-
+    /**
+     * QName of NETCONF top-level data node.
+     */
     public static final QName NAME = QName.create(URI.create("urn:ietf:params:xml:ns:netconf:base:1.0"), null, "data");
 
     /**