Package com.commander4j.gui

Examples of com.commander4j.gui.JButton4j.addActionListener()


    btnDelete1.setIcon(Common.icon_delete);
    btnDelete1.setEnabled(Common.userList.getUser(Common.sessionID).isModuleAllowed("FRM_QM_INSPECTION"));
    panelInspection.add(btnDelete1);
   
    JButton4j btnEdit1 = new JButton4j(lang.get("btn_Edit"));
    btnEdit1.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        editInspectionRecord();
      }
    });
    btnEdit1.setIcon(Common.icon_edit);
View Full Code Here


      }
    });
    scrollPaneActivity.setViewportView(listActivity);
   
    JButton4j btnDelete2 = new JButton4j(lang.get("btn_Delete"));
    btnDelete2.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        deleteActivityRecord();
      }
    });
    btnDelete2.setBounds(683, 80, 117, 32);
View Full Code Here

    btnDelete2.setIcon(Common.icon_delete);
    btnDelete2.setEnabled(Common.userList.getUser(Common.sessionID).isModuleAllowed("FRM_QM_ACTIVITY"));
    panelActivity.add(btnDelete2);
   
    JButton4j btnEdit2 = new JButton4j(lang.get("btn_Edit"));
    btnEdit2.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent arg0) {
        editActivityRecord();
      }
    });
    btnEdit2.setIcon(Common.icon_edit);
View Full Code Here

    btnEdit2.setBounds(683, 52, 117, 32);
    btnEdit2.setEnabled(Common.userList.getUser(Common.sessionID).isModuleAllowed("FRM_QM_ACTIVITY"));
    panelActivity.add(btnEdit2);
   
    JButton4j btnAdd2 = new JButton4j(lang.get("btn_Add"));
    btnAdd2.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        addActivityRecord();
      }
    });
    btnAdd2.setEnabled(Common.userList.getUser(Common.sessionID).isModuleAllowed("FRM_QM_ACTIVITY"));
View Full Code Here

      }
    });
    scrollPaneTests.setViewportView(listTest);
   
    JButton4j btnDelete3 = new JButton4j(lang.get("btn_Delete"));
    btnDelete3.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        deleteTestRecord();
      }
    });
    btnDelete3.setIcon(Common.icon_delete);
View Full Code Here

    btnDelete3.setEnabled(Common.userList.getUser(Common.sessionID).isModuleAllowed("FRM_QM_TEST"));
    btnDelete3.setBounds(687, 80, 117, 32);
    panelTests.add(btnDelete3);
   
    JButton4j btnEdit3 = new JButton4j(lang.get("btn_Edit"));
    btnEdit3.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent arg0) {
        editTestRecord();
      }
    });
    btnEdit3.setEnabled(Common.userList.getUser(Common.sessionID).isModuleAllowed("FRM_QM_TEST"));
View Full Code Here

    btnEdit3.setIcon(Common.icon_edit);
    btnEdit3.setBounds(687, 52, 117, 32);
    panelTests.add(btnEdit3);
   
    JButton4j btnAdd3 = new JButton4j(lang.get("btn_Add"));
    btnAdd3.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        addTestRecord();
      }
    });
    btnAdd3.setIcon(Common.icon_add);
View Full Code Here

    btnAdd3.setEnabled(Common.userList.getUser(Common.sessionID).isModuleAllowed("FRM_QM_TEST"));
    btnAdd3.setBounds(687, 24, 117, 32);
    panelTests.add(btnAdd3);
   
    JButton4j btnDictionary = new JButton4j(lang.get("btn_Dictionary"));
    btnDictionary.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent arg0) {
        editDictionaryRecord();
      }
    });
    btnDictionary.setIcon(Common.icon_dictionary);
View Full Code Here

    textFieldDescription.setBounds(371, 9, 445, 21);
    desktopPane.add(textFieldDescription);
    textFieldDescription.setColumns(10);
   
    JButton4j btnSearch1 = new JButton4j(lang.get("btn_Search"));
    btnSearch1.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        buildSQL();
        populateInspectList("");
      }
    });
View Full Code Here

    btnSearch1.setBounds(262, 40, 117, 32);
    desktopPane.add(btnSearch1);
    btnSearch1.setIcon(Common.icon_search);
   
    JButton4j btnClose1 = new JButton4j(lang.get("btn_Close"));
    btnClose1.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        dispose();
      }
    });
    btnClose1.setBounds(395, 40, 117, 32);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.