addComBackButtonListener

addComBackButtonListener

我对使用MVC还是很陌生,使用ActionListener给我一个运行程序的问题,在这种情况下NullPointerException作为输出出现。

目的是具有一个后退按钮,该按钮可将用户从第二菜单返回到主菜单。

当我在Controller上将此行注释掉时,错误消失了。
this.theView.addComBackButtonListener(new CompanyBackBtnListener());

如果我错了,请指正我,但我认为即使在那里也找不到CompanyBackBtnListener。


检查错别字了。


我试图缩小编码范围。如果我错过任何细节
如果您有任何解决方案,请告诉我我仍在学习Java。
谢谢。

风景

public class HRMSViewGUI extends JFrame {

//Declarations here

private JButton exitCusBtn;


// Main Menu
public HRMSViewGUI()
        {
            this.setTitle("Human Resource Management System");
            this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
            this.setSize(600,225);
            this.setResizable(false);
            this.setLocationRelativeTo(null);
            this.add(HRMSMenu);

            // Main Menu GUI/Buttons place here.
            // This contains the Main Menu buttons and GUI only.

// Second Menu
public void comMenu(){
               comFrame = new JFrame();
               comFrame.setTitle("Company Menu - HRMS SYSTEM");
               comFrame.setResizable(false);
               comFrame.setDefaultCloseOperation(EXIT_ON_CLOSE);
               comFrame.setSize(600,225);
               comFrame.setLocationRelativeTo(null);
               comFrame.setVisible(true);

               // Swings Codings... Buttons.

               // This is the Back/Return button.
               GridBagConstraints cusConc = new GridBagConstraints();
               exitCusBtn = new JButton("Exit to Menu");
               exitCusBtn.setToolTipText("Go back to the Main Menu.");
               cusConc.gridx = 3;
               cusConc.gridy = 8;
               cusConc.fill = GridBagConstraints.HORIZONTAL;
               cusConc.insets = new Insets(5,0,0,0);
               cusContainer.add(exitCusBtn,cusConc);
        }

    void addComBackButtonListener(ActionListener listenerforComBackButton){
            exitComBtn.addActionListener(listenerforComBackButton);
    }
}


控制器

public class HRMSControlGUI {
    private HRMSViewGUI theView;
    private HRMSModel theModel;

    public HRMSControlGUI(HRMSViewGUI theView, HRMSModel theModel){

        this.theView = theView;
        this.theModel = theModel;

         //set Listener for the Controller to detect the ActionListener of the View.
        this.theView.addComBackButtonListener(new CompanyBackBtnListener());
    }

private class CompanyBackBtnListener implements ActionListener{
    @Override
    public void actionPerformed(ActionEvent e) {
    // Enable Main Menu
        theView.setEnabled(true);
    }


主要

public class HRMSapp {
    public static void main(String[] args) {
        HRMSViewGUI theView = new HRMSViewGUI();
        HRMSModel theModel = new HRMSModel();
        HRMSControlGUI theController = new HRMSControlGUI(theView, theModel);
        theView.setVisible(true);
    }

最佳答案

他表示exitComBtn需要在调用addComBackButtonListener之前创建。在调用JButton exitComBtn = new JButton("Click me!");之前,需要运行addComBackButtonListener这样的代码。

我不确定应用程序的总体设计是什么,但是请尝试将按钮声明放入HRMSViewGUI构造函数中。这样,将在创建GUI时创建按钮(如果这就是您想要的)。

07-26 08:36