package net.sourceforge.phpdt.internal.compiler.env;
public interface IGenericField {
-/**
- * Answer an int whose bits are set according the access constants
- * defined by the VM spec.
- */
+ /**
+ * Answer an int whose bits are set according the access constants defined
+ * by the VM spec.
+ */
-// We have added AccDeprecated & AccSynthetic.
+ // We have added AccDeprecated & AccSynthetic.
+ int getModifiers();
-int getModifiers();
-/**
- * Answer the name of the field.
- */
+ /**
+ * Answer the name of the field.
+ */
-char[] getName();
+ char[] getName();
}