How to listen for property change of a Java static class

i’m building a Swing GUI application and i’m trying to change other parts of the GUI when a property in a static class is changed. This is the class that holds the properties: package dev.vitto.cna; import java.beans.*; public class Project { private static PropertyChangeSupport mPcs = new PropertyChangeSupport(Project.class); private static String projectName = "Progetto senza… Read More How to listen for property change of a Java static class