JFrame Singleton

时间:2015-01-01 11:58:20

标签: java swing jframe singleton

我在一个应用程序类中实现了单例设计模式。该类称为SearchFounisseurUi。它使JFrame Swing类无法实现。我还有另一个调用SearchFounisseurUi类的类。我已经编写了下面的代码,但它对我不起作用。到目前为止,这是我的代码。

package VIEW;

import CONTROLLER.SearchFournisseurController;
import MODEL.tableModel.FournisseurTableModel;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.HeadlessException;
import java.awt.ScrollPane;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextField;

public class SearchFounisseurUi extends JFrame{

// Fields
private JTextField nomFournisseur ; 
private JTable resultTable ; 

// Label
private JLabel lblNomFournisseur; 

private JButton chercherButton ; 

// Model view controller 
private FournisseurTableModel fournisseurTableModel ; 
private SearchFournisseurController searchFournisseurController;
// Singleton
private static SearchFounisseurUi instance=null;

private  void SearchFounisseurUi() {

    initComponents();
    buildFrame();
    eventHandling( );
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    pack();

}





/**
 * Launch the application.
 */
public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                SearchFounisseurUi frame = SearchFounisseurUi.getInstance();
                frame.setVisible(true);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
}

private void initComponents() { 
    // Model 
    fournisseurTableModel = new FournisseurTableModel();

    searchFournisseurController = new SearchFournisseurController() ;
    searchFournisseurController.setModel(fournisseurTableModel);
    searchFournisseurController.setUi(this);
    searchFournisseurController.setData();

    // View
    lblNomFournisseur = new JLabel("Nom Fournisseur");        
    nomFournisseur = new JTextField(40);
    chercherButton = new JButton("Chercher");
    resultTable  = new JTable(fournisseurTableModel);

 }

private void eventHandling() {
 }

private void buildFrame() {
    setLayout(new GridBagLayout());
     setPreferredSize(new Dimension(300,400));
    GridBagConstraints gc = new GridBagConstraints();

            // Line 1 
    gc.gridx = 0;
    gc.gridy = 0;
            gc.gridwidth = 2;
            gc.weighty = 1.0;
            gc.fill = GridBagConstraints.BOTH;
    gc.anchor = GridBagConstraints.LINE_START;

            add(new JScrollPane(resultTable),gc);

            // line 2

            gc.gridy++;
            gc.gridwidth  = 1 ;
            gc.weighty = 0.01;
            gc.fill = GridBagConstraints.HORIZONTAL;

            add(lblNomFournisseur,gc);

            gc.gridx++;
            add(nomFournisseur,gc);

            // line 3

            gc.gridx = 0 ;
            gc.gridy++ ; 
            add(chercherButton,gc);


 }

public static SearchFounisseurUi getInstance(){
    if(instance == null)
    instance =  new SearchFounisseurUi();  

    return instance;

}
}

这是我发起课程的地方:

btnChercherFournisseur.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent ae) {
                SearchFounisseurUi fen  = SearchFounisseurUi.getInstance();

            }
        });

2 个答案:

答案 0 :(得分:1)

setVisible(true)对象上拨打SearchFounisseurUi 那应该可以解决你的问题。

    btnChercherFournisseur.addActionListener(new ActionListener() {

        @Override
        public void actionPerformed(ActionEvent ae) {
            SearchFounisseurUi fen  = SearchFounisseurUi.getInstance();
            fen.setVisible(true);  /// !!! /// 
        }
    });

答案 1 :(得分:0)

构造函数没有return类型。所以来自

private  void SearchFounisseurUi() {

将其更改为

private SearchFounisseurUi() {

与你的main方法类似,在你的getInstance方法调用中

instance.setVisible(true);