public class AudioSynthesizerPropertyInfo
extends java.lang.Object
AudioSynthesizer
.Modifier and Type | Field and Description |
---|---|
java.lang.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. |
java.lang.String |
description
A brief description of the property, which may be null.
|
java.lang.String |
name
The name of the property.
|
java.lang.Object |
value
The
value field specifies the current value of
the property. |
java.lang.Class |
valueClass
The
valueClass field specifies class
used in value field. |
Constructor and Description |
---|
AudioSynthesizerPropertyInfo(java.lang.String name,
java.lang.Object value)
Constructs a
AudioSynthesizerPropertyInfo object with a given
name and value. |
public java.lang.String name
public java.lang.String description
public java.lang.Object value
value
field specifies the current value of
the property.public java.lang.Class valueClass
valueClass
field specifies class
used in value
field.public java.lang.Object[] choices
AudioSynthesizerPropertyInfo.value
may be selected
from a particular set of values; otherwise null.public AudioSynthesizerPropertyInfo(java.lang.String name, java.lang.Object value)
AudioSynthesizerPropertyInfo
object with a given
name and value. The description
and choices
are intialized by null
values.name
- the name of the propertyvalue
- the current value or class used for values.