* @see #addAnnotation(String)
*/
private boolean applyAnnotationFilter(BCClass bcls) {
if (_annotations.isEmpty())
return true;
Annotations annos = bcls.getDeclaredRuntimeAnnotations(false);
if (hasAnnotation(annos))
return true;
BCMethod[] methods = bcls.getDeclaredMethods();
for (BCMethod m : methods) {
annos = m.getDeclaredRuntimeAnnotations(false);