String name = m.group(1);
// String type = m.group(2); // ignore for now.
int grp = Integer.parseInt(m.group(3));
Pattern regex = Pattern.compile(m.group(4));
RegexGroupHistogramSink rghs = new RegexGroupHistogramSink(name, regex,
grp);
l.add(rghs);
s = raf.readLine();
}