src/share/classes/com/sun/media/sound/AudioSynthesizerPropertyInfo.java

Print this page




  51                 valueClass = value.getClass();
  52         }
  53     }
  54     /**
  55      * The name of the property.
  56      */
  57     public String name;
  58     /**
  59      * A brief description of the property, which may be null.
  60      */
  61     public String description = null;
  62     /**
  63      * The <code>value</code> field specifies the current value of
  64      * the property.
  65      */
  66     public Object value = null;
  67     /**
  68      * The <code>valueClass</code> field specifies class
  69      * used in <code>value</code> field.
  70      */
  71     public Class valueClass = null;
  72     /**
  73      * An array of possible values if the value for the field
  74      * <code>AudioSynthesizerPropertyInfo.value</code> may be selected
  75      * from a particular set of values; otherwise null.
  76      */
  77     public Object[] choices = null;
  78 
  79 }


  51                 valueClass = value.getClass();
  52         }
  53     }
  54     /**
  55      * The name of the property.
  56      */
  57     public String name;
  58     /**
  59      * A brief description of the property, which may be null.
  60      */
  61     public String description = null;
  62     /**
  63      * The <code>value</code> field specifies the current value of
  64      * the property.
  65      */
  66     public Object value = null;
  67     /**
  68      * The <code>valueClass</code> field specifies class
  69      * used in <code>value</code> field.
  70      */
  71     public Class<?> valueClass = null;
  72     /**
  73      * An array of possible values if the value for the field
  74      * <code>AudioSynthesizerPropertyInfo.value</code> may be selected
  75      * from a particular set of values; otherwise null.
  76      */
  77     public Object[] choices = null;
  78 
  79 }