Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-generator-api / src / main / java / org / opendaylight / mdsal / binding / javav2 / model / api / TypeMember.java
diff --git a/binding2/mdsal-binding2-generator-api/src/main/java/org/opendaylight/mdsal/binding/javav2/model/api/TypeMember.java b/binding2/mdsal-binding2-generator-api/src/main/java/org/opendaylight/mdsal/binding/javav2/model/api/TypeMember.java
deleted file mode 100644 (file)
index ff9f4b7..0000000
+++ /dev/null
@@ -1,78 +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 java.util.List;
-
-/**
- *
- * Common interface for variables and methods in class.
- *
- */
-@Beta
-public interface TypeMember {
-
-    /**
-     * Returns comment string associated with member.
-     *
-     * @return comment string associated with member.
-     */
-    String getComment();
-
-    /**
-     * Returns List of annotation definitions associated with generated type.
-     *
-     * @return List of annotation definitions associated with generated type.
-     */
-    List<AnnotationType> getAnnotations();
-
-    /**
-     * Returns the access modifier of member.
-     *
-     * @return the access modifier of member.
-     */
-    AccessModifier getAccessModifier();
-
-    /**
-     * Returns <code>true</code> if member is declared as static.
-     *
-     * @return <code>true</code> if member is declared as static.
-     */
-    boolean isStatic();
-
-    /**
-     * Returns <code>true</code> if member is declared as final.
-     *
-     * @return <code>true</code> if member is declared as final.
-     */
-    boolean isFinal();
-
-    /**
-     * Get the returning Type of member.
-     *
-     * @return the returning Type of member.
-     */
-    Type getReturnType();
-
-    /**
-     * Returns the name of member.
-     *
-     * @return the name of member.
-     */
-    String getName();
-
-    /**
-     * Returns the Type that declares member.
-     *
-     * @return the Type that declares member.
-     */
-    Type getDefiningType();
-
-}