1 11 package org.eclipse.jdt.core.util; 12 13 21 public interface IFieldInfo { 22 23 30 IConstantValueAttribute getConstantValueAttribute(); 31 32 37 int getAccessFlags(); 38 39 46 char[] getName(); 47 48 53 int getNameIndex(); 54 55 62 char[] getDescriptor(); 63 64 69 int getDescriptorIndex(); 70 71 76 boolean hasConstantValueAttribute(); 77 78 87 boolean isSynthetic(); 88 89 94 boolean isDeprecated(); 95 96 101 int getAttributeCount(); 102 103 104 113 IClassFileAttribute[] getAttributes(); 114 } 115 | Popular Tags |