Parsing Engine

danbikel.parser
Interface Settings.Change

All Known Implementing Classes:
Decoder, DecoderServer, EMDecoder, EMParser, Parser
Enclosing class:
Settings

public static interface Settings.Change

An interface by which to notify a class or an instance of a class after one or more settings have changed.

See Also:
Settings.register(Class,Settings.Change,Set), Settings.register(Settings.Change)

Method Summary
 void update(Map<String,String> changedSettings)
          Invoked by this class to notify the requesting class that one or more settings have changed.
 

Method Detail

update

void update(Map<String,String> changedSettings)
Invoked by this class to notify the requesting class that one or more settings have changed.

Parameters:
changedSettings - the keys of this map are the settings that have changed since the last time this method was invoked, and the values are the old values for those changed settings
See Also:
Settings.register(Class,Settings.Change,Set), Settings.register(Settings.Change)

Parsing Engine

Author: Dan Bikel.