Interface IniListener

public interface IniListener
Implement this Interface so that a class can receive IniFile-events. A class should check in the iniChange function whether it is its section, then according to the key it knows which of the parameters was the one that was changed. For example, if a module stores an integer value in the section "ShiftFrequency", key "LastFrequency" so that it can restore the value when the module is called the next time, it would know, that this type of IniChange supplies the changed value in the integer field.
As, for now, no useful values are stored in the IniFile by JaWavedit, this functionality is not probably not necessary in a module.


Method Index

 o iniChange(String, String, String, int, boolean)

Methods

 o iniChange
 public abstract void iniChange(String section,
                                String key,
                                String s,
                                int i,
                                boolean b)