Replaced 'controller' with 'yangtools' in all package names.
[yangtools.git] / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / CompositeNode.java
similarity index 87%
rename from yang-data-api/src/main/java/org/opendaylight/controller/yang/data/api/CompositeNode.java
rename to yang-data-api/src/main/java/org/opendaylight/yangtools/yang/data/api/CompositeNode.java
index e8ef4067641ac65f37c663a304bcc8dca7027eb5..9800da60e807eb90713ade3762be6f027ae5d691 100644 (file)
@@ -5,11 +5,11 @@
  * 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 java.util.List;\r
 \r
-import org.opendaylight.controller.yang.common.QName;\r
+import org.opendaylight.yangtools.yang.common.QName;\r
 \r
 /**\r
  * Composite node represents a branch in the data tree, which could contain\r
@@ -17,7 +17,7 @@ import org.opendaylight.controller.yang.common.QName;
  * is element which does not text data directly (CDATA or PCDATA), only other\r
  * nodes. The composite node is the manifestation of the following data schema\r
  * constructs in the YANG:\r
- * \r
+ *\r
  * <ul>\r
  * <li><b>container</b> - the composite node represents the YANG container and\r
  * could contain all children schema nodes of that container</li>\r
@@ -26,8 +26,8 @@ import org.opendaylight.controller.yang.common.QName;
  * item.</li>\r
  * <li><b>anyxml</b></li>\r
  * </ul>\r
- * \r
- * \r
+ *\r
+ *\r
  */\r
 public interface CompositeNode extends Node<List<Node<?>>>, NodeModification {\r
 \r
@@ -46,7 +46,7 @@ public interface CompositeNode extends Node<List<Node<?>>>, NodeModification {
     SimpleNode<?> getFirstSimpleByName(QName leaf);\r
 \r
     /**\r
-     * @return cast self to mutable, if possible \r
+     * @return cast self to mutable, if possible\r
      */\r
     MutableCompositeNode asMutable();\r
 }\r