return ret;
}
+ public ResolvedTypeX fromTypeBindingToRTX(TypeBinding tb) {
+ if (tb == null) return ResolvedTypeX.MISSING;
+ ResolvedTypeX ret = getWorld().resolve(fromBinding(tb));
+ return ret;
+ }
+
public ResolvedTypeX[] fromEclipse(ReferenceBinding[] bindings) {
if (bindings == null) {
return ResolvedTypeX.NONE;
return getWorld().getDeclareParents();
}
+ public Collection getDeclareAnnotationOnTypes() {
+ return getWorld().getDeclareAnnotationOnTypes();
+ }
+
+ public Collection getDeclareAnnotationOnFields() {
+ return getWorld().getDeclareAnnotationOnFields();
+ }
+
+ public Collection getDeclareAnnotationOnMethods() {
+ return getWorld().getDeclareAnnotationOnMethods();
+ }
+
public Collection finishedTypeMungers = null;
public boolean areTypeMungersFinished() {