Removed 'code-generator' and 'model' projects.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-model-api / src / main / java / org / opendaylight / controller / sal / binding / model / api / ParameterizedType.java
diff --git a/opendaylight/sal/yang-prototype/code-generator/binding-model-api/src/main/java/org/opendaylight/controller/sal/binding/model/api/ParameterizedType.java b/opendaylight/sal/yang-prototype/code-generator/binding-model-api/src/main/java/org/opendaylight/controller/sal/binding/model/api/ParameterizedType.java
deleted file mode 100644 (file)
index 86c4f5a..0000000
+++ /dev/null
@@ -1,37 +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.sal.binding.model.api;\r
-\r
-/**\r
- * Represents an instance of simple parametrized type such as List<String>.\r
- *\r
- * The parametrized Type is designed to be used to store information of Java\r
- * Generic Type. The array of {@link #getActualTypeArguments()} holds\r
- * information of all generic parameters defined for Parameterized Type.\r
- */\r
-public interface ParameterizedType extends Type {\r
-\r
-    /**\r
-     * Returns array of Types that are defined for Parameterized Type.\r
-     * <br>\r
-     * (for example if ParameterizedType encapsulates java generic Map that\r
-     * specifies two parameters Map<K,V> and the K is java.lang.Integer and V\r
-     * is defined as GeneratedType the array will contain two Types to store\r
-     * the information of generic parameters.)\r
-     *\r
-     * @return array of Types that are defined for Parameterized Type.\r
-     */\r
-    Type[] getActualTypeArguments();\r
-\r
-    /**\r
-     * Returns the Raw Type definition of Parameterized Type.\r
-     *\r
-     * @return the Raw Type definition of Parameterized Type.\r
-     */\r
-    Type getRawType();\r
-}\r