CacheIndex index = new CacheIndex();
if (this.updateable != null) {
index.setIsUpdateable(this.updateable);
}
for (String column : m_columnNames) {
index.addFieldName(column);
}
descriptor.getClassDescriptor().getCachePolicy().addCacheIndex(index);
}
}