20 Aralık 2017 Çarşamba

FloatControl Sınıfı

Giriş
Bu sınıf ses seviyesini kontrol etmek için kullanılır.

getMinimum metodu
Şöyle yaparız.
FloatControl volume = ...;
float min = volume.getMinimum();
getMaximum metodu
Şöyle yaparız.
FloatControl volume = ...;
float max = volume.getMaximum();
getMaxLabel metodu
Şöyle yaparız.
System.out.println( "Units: " + volume.getUnits() );
System.out.println( "Max Label: " + volume.getMaxLabel() );
System.out.println( "Mid Label: " + volume.getMidLabel() );
System.out.println( "Min label: " + volume.getMinLabel() );
System.out.println( "Precision: " + volume.getPrecision() );
System.out.println( "Update Period: " + volume.getUpdatePeriod() );
getUnits metodu
Şöyle yaparız.
System.out.println( "Units: " + volume.getUnits() );
setValue metodu
Şöyle yaparız.
float value = ...;
volume.setValue(value );

Hiç yorum yok:

Yorum Gönder