// ============================================================================ // // Copyright (C) 2006-2016 Talend Inc. - www.talend.com // // This source code is available under agreement available at // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt // // You should have received a copy of the agreement // along with this program; if not, write to Talend SA // 9 rue Pages 92150 Suresnes, France // // ============================================================================ package com.amalto.workbench.providers; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.List; public class ArrayComboCellEditorValueModifier<T> extends ComboCellEditorValueModifier<T> { private List<Object> allInfos = new ArrayList<Object>(); public ArrayComboCellEditorValueModifier(Object[] allInfos, String infoSetMethod, String infoGetMethod, Class<?> setMethodParaType) { super(infoSetMethod, infoGetMethod, setMethodParaType); this.allInfos = Arrays.asList(allInfos); } public ArrayComboCellEditorValueModifier(Object[] allInfos, String infoSetMethod, String infoGetMethod) { this(allInfos, infoSetMethod, infoGetMethod, String.class); } public ArrayComboCellEditorValueModifier(Collection<Object> allInfos, String infoSetMethod, String infoGetMethod) { this(allInfos.toArray(), infoSetMethod, infoGetMethod); } @Override protected List<Object> getAllInfos() { return allInfos; } }