*/
public SearchConditionList(Composite parent, int style, List<ISearchCondition> conditions, List<Integer> fieldsToExclude) {
super(parent, style | SWT.V_SCROLL);
fItems = new ArrayList<SearchConditionItem>();
fFieldsToExclude = fieldsToExclude;
fResources = new LocalResourceManager(JFaceResources.getResources(), this);
initResources();
initComponents(conditions);
}