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