Translation.java 文件源码

java
阅读 28 收藏 0 点赞 0 评论 0

项目:AgentWorkbench 作者:
/**
 * 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;
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号