blob: 7b22b39dc8d2edc48c22eaf67a5b98a89dbd114f [file] [log] [blame]
package org.eclipse.jdt.internal.compiler.env;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.jdt.internal.compiler.*;
public interface IGenericField {
/**
* Answer an int whose bits are set according the access constants
* defined by the VM spec.
*/
// We have added AccDeprecated & AccSynthetic.
int getModifiers();
/**
* Answer the name of the field.
*/
char[] getName();
}