/* 453 */ List actualMethods = new ArrayList();
/* 454 */ List interfaceMethods = new ArrayList();
/* 455 */ Set forcePublic = new HashSet();
/* 456 */ getMethods(sc, this.interfaces, actualMethods, interfaceMethods, forcePublic);
/* */
/* 458 */ List methods = CollectionUtils.transform(actualMethods, new Transformer(forcePublic) {
/* */ public Object transform(Object value) {
/* 460 */ Method method = (Method)value;
/* 461 */ int modifiers = 0x10 | method.getModifiers() & 0xFFFFFBFF & 0xFFFFFEFF & 0xFFFFFFDF;
/* */
/* 466 */ if (this.val$forcePublic.contains(MethodWrapper.create(method))) {