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 OptionUpdater
Interface for classes which temporarily stores changes for anOption
. CallingupdateOption()
should update theOption
with that new information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
reset()
Reset with the value from the option.void
updateOption()
Updates the value of theOption
this object keeps.
-
-
-
Method Detail
-
updateOption
void updateOption()
Updates the value of theOption
this object keeps.
-
reset
void reset()
Reset with the value from the option.
-
-