String wild = args[0].toString().replace('?', '.');
for (int st = 0, i; (i = wild.indexOf("*", st)) != -1; st = i + 3)
wild = wild.substring(0, i) + "." + wild.substring(i);
SimpleRegex re = new SimpleRegex(wild, false);
return (re.matches(target.toString())) ? Boolean.TRUE : Boolean.FALSE;
}
public Class getType(Class targetClass, Class[] argClasses) {
return boolean.class;
}