< prev index next >

src/java.desktop/share/classes/javax/sound/sampled/ReverbType.java

Print this page

        

*** 137,172 **** public class ReverbType { /** * Descriptive name of the reverb type. */ ! private String name; /** * Early reflection delay in microseconds. */ ! private int earlyReflectionDelay; /** * Early reflection intensity. */ ! private float earlyReflectionIntensity; /** * Late reflection delay in microseconds. */ ! private int lateReflectionDelay; /** * Late reflection intensity. */ ! private float lateReflectionIntensity; /** * Total decay time. */ ! private int decayTime; /** * Constructs a new reverb type that has the specified reverberation * parameter values. * --- 137,172 ---- public class ReverbType { /** * Descriptive name of the reverb type. */ ! private final String name; /** * Early reflection delay in microseconds. */ ! private final int earlyReflectionDelay; /** * Early reflection intensity. */ ! private final float earlyReflectionIntensity; /** * Late reflection delay in microseconds. */ ! private final int lateReflectionDelay; /** * Late reflection intensity. */ ! private final float lateReflectionIntensity; /** * Total decay time. */ ! private final int decayTime; /** * Constructs a new reverb type that has the specified reverberation * parameter values. *
< prev index next >