blob: 5e0ed12cbf01f6cacdee508be7ea32983d2e9723 [file] [log] [blame]
package org.eclipse.jdt.internal.compiler.env;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
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();
}