blob: e396b7a6f2670098c6a98bd4b934499b74975b22 [file] [log] [blame]
/* *******************************************************************
* 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.Type;
/**
* Represents an inter-type field declaration declared in an aspect.
*/
public interface InterTypeFieldDeclaration extends InterTypeDeclaration {
/**
* @return the field name
*/
String getName();
/**
* @return the field type
*/
AjType<?> getType();
/**
* @return the generic field type
*/
Type getGenericType();
}