Class FloatPreference

java.lang.Object
org.eclipse.handly.ui.preference.AbstractPreference
org.eclipse.handly.ui.preference.FloatPreference
All Implemented Interfaces:
IFloatPreference, IPreference

public class FloatPreference extends AbstractPreference implements IFloatPreference
Implements a float-valued preference. The preference is stored in an IPreferenceStore.
  • Constructor Details

    • FloatPreference

      public FloatPreference(String name, org.eclipse.jface.preference.IPreferenceStore store)
      Creates a new float-valued preference with the given name and the given store.
      Parameters:
      name - the preference name (not null)
      store - the preference store (not null)
  • Method Details

    • getValue

      public final float getValue()
      Description copied from interface: IFloatPreference
      Returns the current value of this preference.
      Specified by:
      getValue in interface IFloatPreference
      Returns:
      the current value of this preference
    • setValue

      public final void setValue(float value)
      Description copied from interface: IFloatPreference
      Sets the current value of this preference.

      A preference change event is reported if the current value of the preference actually changes from its previous value.

      Specified by:
      setValue in interface IFloatPreference
      Parameters:
      value - the new current value of this preference
    • setDefault

      public final void setDefault(float value)
      Sets the default value for this preference.

      Note that if the preference's current value equals the old default value, the current value changes to the new default value. No preference change events are reported by changing default values.

      Parameters:
      value - the new default value for this preference