com.alee.managers.settings.processors
Class JComboBoxSettingsProcessor

java.lang.Object
  extended by com.alee.managers.settings.SettingsProcessor<javax.swing.JComboBox,java.lang.Integer>
      extended by com.alee.managers.settings.processors.JComboBoxSettingsProcessor

public class JComboBoxSettingsProcessor
extends SettingsProcessor<javax.swing.JComboBox,java.lang.Integer>

Custom SettingsProcessor for JComboBox component.

Author:
Mikle Garin
See Also:
How to use SettingsManager, SettingsManager, SettingsProcessor

Field Summary
 
Fields inherited from class com.alee.managers.settings.SettingsProcessor
data, loading, saving
 
Constructor Summary
JComboBoxSettingsProcessor(SettingsProcessorData data)
          Constructs SettingsProcessor using the specified SettingsProcessorData.
 
Method Summary
protected  void doDestroy(javax.swing.JComboBox comboBox)
          Called when component is unregistered from ComponentSettingsManager.
protected  void doInit(javax.swing.JComboBox comboBox)
          Called when a new component is registered in ComponentSettingsManager.
protected  void doLoad(javax.swing.JComboBox comboBox)
          Called on component settings load.
protected  void doSave(javax.swing.JComboBox comboBox)
          Called on component settings save.
 java.lang.Integer getDefaultValue()
          Returns component default value.
 
Methods inherited from class com.alee.managers.settings.SettingsProcessor
destroy, getComponent, getData, getGroup, getKey, load, loadValue, save, save, saveValue
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JComboBoxSettingsProcessor

public JComboBoxSettingsProcessor(SettingsProcessorData data)
Constructs SettingsProcessor using the specified SettingsProcessorData.

Parameters:
data - SettingsProcessorData
Method Detail

getDefaultValue

public java.lang.Integer getDefaultValue()
Returns component default value.

Overrides:
getDefaultValue in class SettingsProcessor<javax.swing.JComboBox,java.lang.Integer>
Returns:
component default value

doInit

protected void doInit(javax.swing.JComboBox comboBox)
Called when a new component is registered in ComponentSettingsManager.

Specified by:
doInit in class SettingsProcessor<javax.swing.JComboBox,java.lang.Integer>
Parameters:
comboBox - registered component

doDestroy

protected void doDestroy(javax.swing.JComboBox comboBox)
Called when component is unregistered from ComponentSettingsManager.

Specified by:
doDestroy in class SettingsProcessor<javax.swing.JComboBox,java.lang.Integer>
Parameters:
comboBox - unregistered component

doLoad

protected void doLoad(javax.swing.JComboBox comboBox)
Called on component settings load. It doesn't matter if it is invoked by SettingsProcessor or some other source.

Specified by:
doLoad in class SettingsProcessor<javax.swing.JComboBox,java.lang.Integer>
Parameters:
comboBox - component to load settings into

doSave

protected void doSave(javax.swing.JComboBox comboBox)
Called on component settings save. It doesn't matter if it is invoked by SettingsProcessor or some other source.

Specified by:
doSave in class SettingsProcessor<javax.swing.JComboBox,java.lang.Integer>
Parameters:
comboBox - component to save settings from