This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.sound.sampled.spi
class MixerProvider

java.lang.Object extended by javax.sound.sampled.spi.MixerProvider

Most common way to construct:

List providers = …;
int i = …;

MixerProvider provider = (MixerProvider)providers.get(i);

Based on 15 examples


public abstract class MixerProvider
extends Object

A provider or factory for a particular mixer type. This mechanism allows the implementation to determine how resources are managed in creation / management of a mixer.


Constructor Summary

          
 
Method Summary
abstract Mixer

          Obtains an instance of the mixer represented by the info object.
abstract Mixer.Info[]

          Obtains the set of info objects representing the mixer or mixers provided by this MixerProvider.
 boolean

          Indicates whether the mixer provider supports the mixer represented by the specified mixer info object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MixerProvider

public MixerProvider()
Method Detail

getMixer

public abstract Mixer getMixer(Mixer.Info info)
Obtains an instance of the mixer represented by the info object.

Parameters:
info - an info object that describes the desired mixer
Returns:
mixer instance

getMixerInfo

public abstract Mixer.Info[] getMixerInfo()
Obtains the set of info objects representing the mixer or mixers provided by this MixerProvider.

Returns:
set of mixer info objects

isMixerSupported

public boolean isMixerSupported(Mixer.Info info)
Indicates whether the mixer provider supports the mixer represented by the specified mixer info object.

Parameters:
info - an info object that describes the mixer for which support is queried
Returns:
true if the specified mixer is supported, otherwise false


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.