Refactor TypedSchemaNode
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / GroupingDefinition.java
index ab5a9fb49f4606b4d622c71ad8bbdc490e50817d..16318910e96a3e3490f57b115f48996571e1fef7 100644 (file)
@@ -1,29 +1,27 @@
-/*\r
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * 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.yangtools.yang.model.api;\r
-\r
-/**\r
- * Interface describing YANG 'grouping' statement.\r
- * <p>\r
- * It is used to define a reusable block of nodes, which may be used locally in\r
- * the module, in modules that include it, and by other modules that import from\r
- * it.\r
- * </p>\r
- */\r
-public interface GroupingDefinition extends DataNodeContainer, SchemaNode {\r
-\r
-    /**\r
-     * Returns <code>true</code> if the data node was added by uses statement,\r
-     * otherwise returns <code>false</code>\r
-     *\r
-     * @return <code>true</code> if the data node was added by uses statement,\r
-     *         otherwise returns <code>false</code>\r
-     */\r
-    boolean isAddedByUses();\r
-\r
-}\r
+/*
+ * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.yangtools.yang.model.api;
+
+/**
+ * Interface describing YANG 'grouping' statement.
+ *
+ * <p>
+ * It is used to define a reusable block of nodes, which may be used locally in
+ * the module, in modules that include it, and by other modules that import from it.
+ */
+public interface GroupingDefinition extends DataNodeContainer, SchemaNode, NotificationNodeContainer,
+       ActionNodeContainer {
+    /**
+     * Returns <code>true</code> if the data node was added by uses statement,
+     * otherwise returns <code>false</code>.
+     *
+     * @return <code>true</code> if the data node was added by uses statement,
+     *         otherwise returns <code>false</code>
+     */
+    boolean isAddedByUses();
+}