Bug 6868 - [Yang 1.1] Argument of "If-feature" statement may be a boolean expression...
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / LeafSchemaNode.java
index db930d218280a9c308a146585340b82ac6a8ca1b..21dae7eeed208ff4ba2b73b20b6584a189307217 100644 (file)
@@ -1,27 +1,42 @@
-/*\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 'leaf' statement.\r
- * <p>\r
- * The 'leaf' statement is used to define a leaf node in the schema tree.\r
- * </p>\r
- */\r
-public interface LeafSchemaNode extends DataSchemaNode {\r
-\r
-    /**\r
-     * @return type of this leaf\r
-     */\r
-    TypeDefinition<?> getType();\r
-\r
-    String getDefault();\r
-\r
-    String getUnits();\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 <code>leaf</code> statement. The interface contains
+ * the methods for getting the following data (substatements of
+ * <code>leaf</code> statement)
+ * <ul>
+ * <li><code>type</code></li>
+ * <li><code>default</code></li>
+ * <li><code>units</code></li>
+ * </ul>
+ * <p>
+ * The 'leaf' statement is used to define a leaf node in the schema tree.
+ * </p>
+ */
+public interface LeafSchemaNode extends TypedSchemaNode {
+    /**
+     * Returns the default value of YANG <code>leaf</code>.
+     *
+     * @return string with the value of the argument of YANG
+     *         <code>default</code> substatement of the <code>leaf</code>
+     *         statement
+     */
+    String getDefault();
+
+    /**
+     * Returns the units in which are the values of the <code>leaf</code>
+     * presented.
+     *
+     * @return string with the value of the argument of YANG <code>units</code>
+     *         substatement of the <code>leaf</code> statement
+     */
+    String getUnits();
+
+}