GUI_FLAG_ICON_FILE,
targetLang.getCountry().getCountry().toLowerCase()) ;
InputStream src = thisClass.getResourceAsStream(filePath) ;
File flagFile = new File(filePath) ;
if (src == null) {
throw new FileReadingException(flagFile) ;
}// if
icon = new ImageIcon(ImageUtility.getImageBytes(
new BufferedInputStream(src))) ;
try {
src.close() ;
} catch (IOException e) {
throw new FileReadingException(flagFile) ;
}// try
// Build menu item
JMenuItem item = new JMenuItem(icon) ;
item.setMnemonic(mnemonic) ;