Increased version of binding-generator to 0.5.5-SNAPSHOT.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-api / src / main / java / org / opendaylight / controller / yang / model / api / ExtensionDefinition.java
diff --git a/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/yang/model/api/ExtensionDefinition.java b/opendaylight/sal/yang-prototype/yang/yang-model-api/src/main/java/org/opendaylight/controller/yang/model/api/ExtensionDefinition.java
deleted file mode 100644 (file)
index 8b2ed86..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/*\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.controller.yang.model.api;\r
-\r
-public interface ExtensionDefinition extends SchemaNode {\r
-\r
-    /**\r
-     * Returns the <code>String</code> that is the name of argument to the\r
-     * Keyword. If no argument statement is present the method will return\r
-     * <code>null</code> <br>\r
-     * The argument statement is defined in <a\r
-     * href="https://tools.ietf.org/html/rfc6020#section-7.17.2">[RFC-6020] The\r
-     * argument Statement</a>\r
-     * \r
-     * @return the <code>String</code> that is the name of argument to the\r
-     *         Keyword. If no argument statement is present the method will\r
-     *         return <code>null</code>\r
-     */\r
-    public String getArgument();\r
-\r
-    /**\r
-     * This statement indicates if the argument is mapped to an XML element in\r
-     * YIN or to an XML attribute.<br>\r
-     * By contract if implementation of ExtensionDefinition does not specify the\r
-     * yin-element statement the return value is by default set to\r
-     * <code>false</code>\r
-     * \r
-     * <br>\r
-     * <br>\r
-     * For more specific definition please look into <a\r
-     * href="https://tools.ietf.org/html/rfc6020#section-7.17.2.2">[RFC-6020]\r
-     * The yin-element Statement</a>\r
-     * \r
-     * @return <code>true</code> if the argument is mapped to an XML element in\r
-     *         YIN or returns <code>false</code> if the argument is mapped to an\r
-     *         XML attribute.\r
-     */\r
-    public boolean isYinElement();\r
-}\r