Replaced 'controller' with 'yangtools' in all package names.
[yangtools.git] / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / Node.java
similarity index 83%
rename from yang-data-api/src/main/java/org/opendaylight/controller/yang/data/api/Node.java
rename to yang-data-api/src/main/java/org/opendaylight/yangtools/yang/data/api/Node.java
index f107dd89640b0f832f655dea35ced8d3724eda88..bf32dfe9bd30e9c4cc7689578fb3c94d0071e8cf 100644 (file)
@@ -5,29 +5,29 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
  */\r
-package org.opendaylight.controller.yang.data.api;\r
+package org.opendaylight.yangtools.yang.data.api;\r
 \r
-import org.opendaylight.controller.yang.common.QName;\r
+import org.opendaylight.yangtools.yang.common.QName;\r
 \r
 /**\r
  * Base representation of node in the data tree, defines basic parameters of\r
  * node such as a QName.\r
- * \r
- * \r
+ *\r
+ *\r
  * @param <T>\r
  */\r
 public interface Node<T> {\r
 \r
     /**\r
      * Returns the name of the Node\r
-     * \r
+     *\r
      * @return qName of node\r
      */\r
     QName getNodeType();\r
 \r
     /**\r
      * Returns parent node\r
-     * \r
+     *\r
      * @return parent node\r
      */\r
     CompositeNode getParent();\r
@@ -35,7 +35,7 @@ public interface Node<T> {
     /**\r
      * Returns the value that holds current node, if no value is defined method\r
      * can return <code>null</code>\r
-     * \r
+     *\r
      * @return Returns the value that holds current node.\r
      */\r
     T getValue();\r