/* * Copyright (c) 2016 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.binding2.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 getAnnotations(); /** * Returns the access modifier of member. * * @return the access modifier of member. */ AccessModifier getAccessModifier(); /** * Returns true if member is declared as static. * * @return true if member is declared as static. */ boolean isStatic(); /** * Returns true if member is declared as final. * * @return true 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(); }