public class

AudioSynthesizerPropertyInfo

extends Object
java.lang.Object
   ↳ com.sun.media.sound.AudioSynthesizerPropertyInfo

Class Overview

Information about property used in opening AudioSynthesizer.

Summary

Fields
public Object[] choices An array of possible values if the value for the field AudioSynthesizerPropertyInfo.value may be selected from a particular set of values; otherwise null.
public String description A brief description of the property, which may be null.
public String name The name of the property.
public Object value The value field specifies the current value of the property.
public Class valueClass The valueClass field specifies class used in value field.
Public Constructors
AudioSynthesizerPropertyInfo(String name, Object value)
Constructs a AudioSynthesizerPropertyInfo object with a given name and value.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public Object[] choices

An array of possible values if the value for the field AudioSynthesizerPropertyInfo.value may be selected from a particular set of values; otherwise null.

public String description

A brief description of the property, which may be null.

public String name

The name of the property.

public Object value

The value field specifies the current value of the property.

public Class valueClass

The valueClass field specifies class used in value field.

Public Constructors

public AudioSynthesizerPropertyInfo (String name, Object value)

Constructs a AudioSynthesizerPropertyInfo object with a given name and value. The description and choices are intialized by null values.

Parameters
name the name of the property
value the current value or class used for values.