public boolean matches(Method method) { if (!symbol.contains(getMethodName(method))) { return false; } // if (!Modifier.isStatic(method.getModifiers()) && // !symbol.contains(method.getDeclaringClass().getSimpleName())) // return false; parse(); try { if (ref != null) { boolean res = ref.matches(method); if (!res && BridJ.debug) { BridJ.debug( "Symbol " + symbol + " was a good candidate but expected demangled signature " + ref + " did not match the method " + method); } return res; } } catch (Exception ex) { ex.printStackTrace(); } return false; }
public boolean matchesDestructor(Class<?> type) { if (!symbol.contains(type.getSimpleName())) { return false; } parse(); try { if (ref != null) { return ref.matchesDestructor(type); } } catch (Exception ex) { ex.printStackTrace(); } return false; }
public boolean matchesConstructor(Type type, java.lang.reflect.Constructor<?> constr) { if (!symbol.contains(Utils.getClass(type).getSimpleName())) { return false; } parse(); try { if (ref != null) { return ref.matchesConstructor(type, constr); } } catch (Exception ex) { ex.printStackTrace(); } return false; }
@Override public String toString() { return function.toString(); }