1 11 package org.eclipse.jdt.internal.compiler.env; 12 13 import org.eclipse.jdt.internal.compiler.impl.Constant; 14 15 public interface IBinaryField extends IGenericField { 16 19 IBinaryAnnotation[] getAnnotations(); 20 21 25 Constant getConstant(); 26 27 31 char[] getGenericSignature(); 32 33 36 char[] getName(); 37 38 41 long getTagBits(); 42 43 53 char[] getTypeName(); 54 } 55 | Popular Tags |