public class SimpleQueryCompiler extends StringCompiler implements ICompiler {
// private static Log log = Log.getLog(SimpleQueryCompiler.class);
protected StringPart createDefaultAttributePart(String part) {
ParameterPart out = new ParameterPart(this);
out.attribute = MString.split(part,",");
return out;
}