57 |
* Represents a {@link HashMap} of translations. toString() returns the |
* Represents a {@link HashMap} of translations. toString() returns the |
58 |
* appropriate translation. This class is mutable. |
* appropriate translation. This class is mutable. |
59 |
* |
* |
60 |
* @author <a href="mailto:[email protected]">Stefan Alfons Tzeggai</a> |
* @author <a href="mailto:[email protected]">Stefan Alfons Tzeggai</a> |
61 |
*/ |
*/ |
62 |
|
|
63 |
public class Translation extends HashMap<String, String> implements |
public class Translation extends HashMap<String, String> implements |
393 |
PropertyChangeEvent pce = new PropertyChangeEvent(new Translation( |
PropertyChangeEvent pce = new PropertyChangeEvent(new Translation( |
394 |
new ArrayList<String>(), "fakeSource"), |
new ArrayList<String>(), "fakeSource"), |
395 |
ACTIVELANG_CHANGE_PROPERTY, null, getActiveLang()); |
ACTIVELANG_CHANGE_PROPERTY, null, getActiveLang()); |
396 |
for (PropertyChangeListener pcl : listenersLocaleChange) { |
for (PropertyChangeListener pcl : listenersActiveLangChange) { |
397 |
if (pcl != null) |
if (pcl != null) |
398 |
pcl.propertyChange(pce); |
pcl.propertyChange(pce); |
399 |
} |
} |