while (st.hasMoreTokens())
{
String item = st.nextToken().trim();
array.add(Integer.decode(getValue(item, null)));
}
cond = joinAnd(cond, new ConditionTargetClassIdRestriction(array));
}
else if ("race_id".equalsIgnoreCase(a.getNodeName()))
{
FastList<Integer> array = new FastList<Integer>();
StringTokenizer st = new StringTokenizer(a.getNodeValue(), ",");