Class PaddingSettingsDefinition

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void clear​(Settings settings)
      Removes any values in the given settings object assocated with this settings definition
      void copySetting​(Settings settings, Settings destSettings)
      Copies any setting value associated with this settings definition from the srcSettings settings to the destSettings.
      int getChoice​(Settings settings)
      Returns the current value for this settings
      java.lang.String getDescription()
      Returns a description of this settings definition
      java.lang.String getDisplayChoice​(int value, Settings s1)
      Returns the String for the given enum value
      java.lang.String[] getDisplayChoices​(Settings settings)
      Gets the list of choices as strings based on the current settings
      java.lang.String getName()
      Returns the name of this SettingsDefinition
      boolean hasValue​(Settings setting)  
      boolean isPadded​(Settings settings)
      Checks if the current settings are padded or unpadded
      void setChoice​(Settings settings, int value)
      Sets the given value into the settings object using this definition as a key
      void setPadded​(Settings settings, boolean isPadded)
      Set true if value should display padded out with zero's
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • isPadded

        public boolean isPadded​(Settings settings)
        Checks if the current settings are padded or unpadded
        Parameters:
        settings - the instance settings to check
        Returns:
        true if the value is "padded".
      • setPadded

        public void setPadded​(Settings settings,
                              boolean isPadded)
        Set true if value should display padded out with zero's
        Parameters:
        settings - settings to set padded value
        isPadded - true for padding
      • getChoice

        public int getChoice​(Settings settings)
        Description copied from interface: EnumSettingsDefinition
        Returns the current value for this settings
        Specified by:
        getChoice in interface EnumSettingsDefinition
        Parameters:
        settings - The settings to search
        Returns:
        the value for the settingsDefintions
      • setChoice

        public void setChoice​(Settings settings,
                              int value)
        Description copied from interface: EnumSettingsDefinition
        Sets the given value into the settings object using this definition as a key
        Specified by:
        setChoice in interface EnumSettingsDefinition
        Parameters:
        settings - the settings to store the value.
        value - the settings value to be stored.
      • getDisplayChoices

        public java.lang.String[] getDisplayChoices​(Settings settings)
        Description copied from interface: EnumSettingsDefinition
        Gets the list of choices as strings based on the current settings
        Specified by:
        getDisplayChoices in interface EnumSettingsDefinition
        Parameters:
        settings - the instance settings
        Returns:
        an array of strings which represent valid choices based on the current settings.
      • getDisplayChoice

        public java.lang.String getDisplayChoice​(int value,
                                                 Settings s1)
        Description copied from interface: EnumSettingsDefinition
        Returns the String for the given enum value
        Specified by:
        getDisplayChoice in interface EnumSettingsDefinition
        Parameters:
        value - the value to get a display string for
        s1 - the instance settings which may affect the results
        Returns:
        the display string for the given settings.
      • clear

        public void clear​(Settings settings)
        Description copied from interface: SettingsDefinition
        Removes any values in the given settings object assocated with this settings definition
        Specified by:
        clear in interface SettingsDefinition
        Parameters:
        settings - the settings object to be cleared.
      • copySetting

        public void copySetting​(Settings settings,
                                Settings destSettings)
        Description copied from interface: SettingsDefinition
        Copies any setting value associated with this settings definition from the srcSettings settings to the destSettings.
        Specified by:
        copySetting in interface SettingsDefinition
        Parameters:
        settings - the settings to be copied
        destSettings - the settings to be updated.