/* * jlscp - a java LinuxSampler control protocol API * * Copyright (C) 2005 Grigor Kirilov 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; /** * Provides information about the current settings of a specific audio output device. * @author Grigor Iliev */ public class AudioOutputDevice extends AbstractDevice { private Parameter channels = null; private Parameter samplerate = null; /** Creates a new instance of AudioOutputDevice */ public AudioOutputDevice() { } /** * Gets the amount of audio output channels this device currently offers. * @return The amount of audio output channels this device currently offers. */ public int getChannelCount() { return channels == null ? 0 : channels.getValue(); } /** * Gets the CHANNELS parameter. * @return A Parameter instance. */ public Parameter getChannelsParameter() { return channels; } /** * Sets the CHANNELS parameter. * @param channels The new CHANNELS parameter. */ public void setChannelsParameter(Parameter channels) { this.channels = channels; } /** * Gets the sample rate this device uses. * @return The sample rate this device uses. */ public int getSampleRate() { return samplerate == null ? 0 : samplerate.getValue(); } /** * Gets the SAMPLERATE parameter. * @return A Parameter instance. */ public Parameter getSampleRateParameter() { return samplerate; } /** * Sets the SAMPLERATE parameter. * @param samplerate The new SAMPLERATE parameter. */ public void setSampleRateParameter(Parameter samplerate) { this.samplerate = samplerate; } }