/**
* This method initializes jComboBoxDestinationLang.
* @return javax.swing.JComboBox
*/
private JComboBox<LanguageListElement> getJComboBoxDestinationLang() {
if (jComboBoxDestinationLang == null) {
jComboBoxDestinationLang = new JComboBox<LanguageListElement>();
jComboBoxDestinationLang.setModel(langSelectionModelDestin);
jComboBoxDestinationLang.setPreferredSize(new Dimension(200, 26));
jComboBoxDestinationLang.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (currDataSet!=null) {
jTextFieldDestination.setText((String) currDataSet.get(jComboBoxDestinationLang.getSelectedIndex()+1));
setGoogleTranslation();
}
}
});
}
return jComboBoxDestinationLang;
}
Translation.java 文件源码
java
阅读 28
收藏 0
点赞 0
评论 0
项目:AgentWorkbench
作者:
评论列表
文章目录