/* * RapidMiner * * Copyright (C) 2001-2011 by Rapid-I and the contributors * * Complete list of developers available at our web site: * * http://rapid-i.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see http://www.gnu.org/licenses/. */ package com.rapidminer.parameter; import org.w3c.dom.Element; import com.rapidminer.operator.ports.InputPort; import com.rapidminer.tools.Ontology; import com.rapidminer.tools.XMLException; /** * A parameter type for selecting several attributes. * This is merely a copy of the {@link ParameterTypeAttribute}, since it * already comes with all needed functions. But we register a different CellRenderer * for this class. * * @author Tobias Malbrecht, Sebastian Land */ public class ParameterTypeAttributes extends ParameterTypeAttribute { private static final long serialVersionUID = -4177652183651031337L; public ParameterTypeAttributes(Element element) throws XMLException { super(element); } public ParameterTypeAttributes(final String key, String description, InputPort inPort) { this(key, description, inPort, true, Ontology.ATTRIBUTE_VALUE); } public ParameterTypeAttributes(final String key, String description, InputPort inPort, int...valueTypes) { this(key, description, inPort, true, valueTypes); } public ParameterTypeAttributes(final String key, String description, InputPort inPort, boolean optional) { this(key, description, inPort, optional, Ontology.ATTRIBUTE_VALUE); } public ParameterTypeAttributes(final String key, String description, InputPort inPort, boolean optional, int...valueTypes) { super(key, description, inPort, optional, valueTypes); } public ParameterTypeAttributes(final String key, String description, InputPort inPort, boolean optional, boolean expert) { this(key, description, inPort, optional); setExpert(expert); } }