I am pretty new in Swing development and I have the following problem using a class that implements the PropertyChangeListener interface.
So I have the following GUI class (I am posting only the interesting section of this class):
public class GUI extends SingleFrameApplication implements PropertyChangeListener {
private MainFrame mainFrame = null;
private static LoginFrame loginFrame;
@Override
protected void startup() {
boolean offLine = false;
showLoginFrame();
mainFrame = new MainFrame(settings, tasksSettings, logAppender);
if (OSUtils.isUbuntuPrecisePangolin() || OSUtils.isFedoraBeefyMiracle() || OSUtils.isFedoraSphericalCow()) {
File mountPointFolder = new File(System.getenv("HOME") + "/connect_drives");
if (!mountPointFolder.exists())
mountPointFolder.mkdir();
mainFrame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
mainFrame.addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
if (mainFrame.getState() == JFrame.ICONIFIED)
tryToExit();
else
mainFrame.setState(JFrame.ICONIFIED);
}
});
}
}
private void showLoginFrame() {
loginFrame = new LoginFrame();
loginFrame.setVisible(true);
loginFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// Notify every change to every bound property for that object:
loginFrame.addPropertyChangeListener(this);
}
@Override
protected void shutdown() {
System.out.println("Entered into GUI ---> shutdown()");
logger.debug("Termino l'applicazione.");
ulogger.info(Constants.APP_TITLE + "|Arresto "+ Constants.APP_TITLE);
// FileUtils.saveGeneralLogFile(logAppender.getLogInFile());
logAppender.saveGeneralLogFile();
EventBusService.unsubscribe(this);
if (mainFrame != null)
mainFrame.setVisible(false);
}
public static void main(String[] args) {
launch(GUI.class, args);
}
@Override
public void propertyChange(PropertyChangeEvent arg0) {
System.out.println("GUI SingleFrameApplication ---> propertyChange(): " + arg0.getPropertyName());
if (arg0.getPropertyName().equals("buttonLogOffClicked")) {
//System.out.println("GUI SingleFrameApplication ---> richiamo exit");
//exit();
mainFrame.OnWindowClose();
mainFrame.dispose();
mainFrame = null;
showLoginFrame();
}
if (arg0.getPropertyName().equals("loginResult")) {
System.out.println("GUI SingleFrameApplication ---> richiamo MainFrame");
//loginFrame.setVisible(false);
loginFrame.dispose();
loginFrame = null;
showMainFrame();
}
}
private void showMainFrame() {
mainFrame = new MainFrame(settings, tasksSettings, logAppender);
// I add a PropertyChangeListener to the created MainFrame object:
mainFrame.addPropertyChangeListener(this);
mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
WindowListener exitListener = new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
System.out.println("GUI SingleFrameApplication --> windowClosing");
shutdown();
// mainFrame.setVisible(false);
/*int confirm = JOptionPane.showOptionDialog(frame,
"Are You Sure to Close this Application?",
"Exit Confirmation", JOptionPane.YES_NO_OPTION,
JOptionPane.QUESTION_MESSAGE, null, null, null);
if (confirm == JOptionPane.YES_OPTION) {
System.exit(1);
}*/
}
};
mainFrame.addWindowListener(exitListener);
mainFrame.setVisible(true);
}
Then I have the MainFram class that extends a JFrame in which there is a JButton to perform the log out operation, something like this:
public class MainFrame extends JFrame {
private final Action actionLogOut = new AbstractAction() {
{
putValue(Action.NAME, _("log-out"));
}
@Override
public void actionPerformed(ActionEvent e) {
System.out.println("logOutButton clicked !!!, firePropertyChange() will start");
// System.exit(0);
firePropertyChange("buttonLogOffClicked", false, true);
}
};
public MainFrame(Settings settings, TasksSettings tasksSettings, LogAppender logAppender) {
super();
......................
......................
......................
header.add(new JButton(actionLogOut));
......................
......................
......................
}
}
So when my JButton is clicked it is performed this method:
private final Action actionLogOut = new AbstractAction() {
{
putValue(Action.NAME, _("log-out"));
}
@Override
public void actionPerformed(ActionEvent e) {
System.out.println("logOutButton clicked !!!, firePropertyChange() will start");
// System.exit(0);
firePropertyChange("buttonLogOffClicked", false, true);
}
};
infact when I click on the button, in the console, appear to me the output:
"logOutButton clicked !!!, firePropertyChange() will start"
and then I execute the firePropertyChange() method and I would expect that this event was handle by this method of GUI class:
@Override
public void propertyChange(PropertyChangeEvent arg0) {
System.out.println("GUI SingleFrameApplication ---> propertyChange(): " + arg0.getPropertyName());
if (arg0.getPropertyName().equals("buttonLogOffClicked")) {
//System.out.println("GUI SingleFrameApplication ---> richiamo exit");
//exit();
mainFrame.OnWindowClose();
mainFrame.dispose();
mainFrame = null;
showLoginFrame();
}
if (arg0.getPropertyName().equals("loginResult")) {
System.out.println("GUI SingleFrameApplication ---> richiamo MainFrame");
//loginFrame.setVisible(false);
loginFrame.dispose();
loginFrame = null;
showMainFrame();
}
}
But don't work and seems not enter in the firePropertyChange() method?
Why? What am I missing?
Tnx
Andrea