/* * jlscp - a java LinuxSampler control protocol API * * Copyright (C) 2005-2006 Grigor Iliev * * This file is part of jlscp. * * jlscp is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * jlscp 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with jlscp; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */ package org.linuxsampler.lscp; /** * Defines the generic properties that every driver should have. * @author Grigor Iliev */ public interface Driver { /** * Gets the name of this driver. * @return The name of this driver. */ public String getName(); /** * Gets a description about this driver. * @return A description about this driver. */ public String getDescription(); /** * Gets the version of this driver. * @return The version of this driver. */ public String getVersion(); /** * Gets all parameters available for this driver. * @return Parameter array with all parameters available for this driver. */ public Parameter[] getParameters(); /** * Gets the names of all parameters available for this driver. * @return String array with the names of all parameters * available for this driver. */ public String[] getParameterNames(); }