/* *******************************************************************
 * Copyright (c) 2005 Contributors.
 * 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://eclipse.org/legal/epl-v10.html 
 *  
 * Contributors: 
 *   Adrian Colyer			Initial implementation
 * ******************************************************************/
package org.aspectj.lang.reflect;

import java.lang.reflect.Method;
import java.lang.reflect.Type;
import java.lang.reflect.TypeVariable;

Represents an inter-type method declaration member within an aspect.
/** * Represents an inter-type method declaration member within an aspect. */
public interface InterTypeMethodDeclaration extends InterTypeDeclaration {
Returns:the name of this method
/** * @return the name of this method */
String getName();
Returns:the method return type
/** * @return the method return type */
AjType<?> getReturnType();
Returns:the generic return type
/** * @return the generic return type */
Type getGenericReturnType();
Returns:the method parameters
/** * @return the method parameters */
AjType<?>[] getParameterTypes();
Returns:the generic method parameters
/** * @return the generic method parameters */
Type[] getGenericParameterTypes();
Returns:the type variables declared by this method
/** * @return the type variables declared by this method */
TypeVariable<Method>[] getTypeParameters();
Returns:the declared exceptions thrown by this method
/** * @return the declared exceptions thrown by this method */
AjType<?>[] getExceptionTypes(); }