Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-generator-api / src / main / java / org / opendaylight / mdsal / binding / javav2 / model / api / CodeGenerator.java
diff --git a/binding2/mdsal-binding2-generator-api/src/main/java/org/opendaylight/mdsal/binding/javav2/model/api/CodeGenerator.java b/binding2/mdsal-binding2-generator-api/src/main/java/org/opendaylight/mdsal/binding/javav2/model/api/CodeGenerator.java
deleted file mode 100644 (file)
index f2b462c..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (c) 2017 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.mdsal.binding.javav2.model.api;
-
-import com.google.common.annotations.Beta;
-import org.opendaylight.yangtools.concepts.Identifier;
-
-/**
- *
- * Transforms virtual data to the concrete code in programming language.
- *
- */
-@Beta
-public interface CodeGenerator {
-
-    /**
-     * Generates code for <code>type</code>.
-     *
-     * @param type
-     *            Input type to be processed
-     * @return generated JAVA code
-     */
-    String generate(Type type);
-
-    /**
-     * Checks if the concrete instance of <code>type</code> fit to concrete
-     * implementation of this interface.
-     *
-     * (e. g. method return true if in <code>EnumGenerator</code> (which
-     * implements this interface) has input parameter of type Enumeration (which
-     * is subtype of Type)
-     *
-     * @param type
-     *            Input type to be processed
-     * @return true if type is acceptable for processing, otherwise false
-     */
-    boolean isAcceptable(Type type);
-
-    /**
-     * Returns name of <code>type</code> parameter.
-     *
-     * @param type
-     *            Input type to be processed
-     * @return generated unit
-     */
-    Identifier getUnitName(Type type);
-
-}