private static void BindIndex(XmlAttribute indexAttribute, Table table, Column column, Mappings mappings) { if (indexAttribute != null && table != null) { StringTokenizer tokens = new StringTokenizer(indexAttribute.Value, ", "); foreach (string token in tokens) { table.GetIndex(token).AddColumn(column); } } }