Package net.sf.freecol.client.gui.option
Interface OptionUpdater
-
- All Known Implementing Classes:
AbstractUnitOptionUI,AudioMixerOptionUI,BooleanOptionUI,FileOptionUI,FreeColActionUI,IntegerOptionUI,LanguageOptionUI,ListOptionUI,ModOptionUI,OptionGroupUI,OptionUI,PercentageOptionUI,RangeOptionUI,SelectOptionUI,SliderOptionUI,StringOptionUI,TextOptionUI,UnitTypeOptionUI
public interface OptionUpdaterInterface for classes which temporarily stores changes for anOption. CallingupdateOption()should update theOptionwith that new information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreset()Reset with the value from the option.voidupdateOption()Updates the value of theOptionthis object keeps.
-
-
-
Method Detail
-
updateOption
void updateOption()
Updates the value of theOptionthis object keeps.
-
reset
void reset()
Reset with the value from the option.
-
-