}
private void saveMappings(boolean bIsSource){
File file=ApplicationFileChooser.getInstance(m_window).getFileToSave(
this,
new SuffixFileChooserFilter(FILE_EXTENSION, true),
bIsSource?"Write source mapping file":"Write target mapping file");
if(file==null)return;
Map<Node,Node> sourceTranslationTable=m_sourceMapArea.m_table_old2new, targetTranslationTableTable_R=m_targetMapArea.m_table_new2old;
String[] lines=new String[sourceTranslationTable.size()];
Map<Node,Node> table=bIsSource?sourceTranslationTable:targetTranslationTableTable_R;