List of usage examples for javax.swing.event SwingPropertyChangeSupport SwingPropertyChangeSupport
public SwingPropertyChangeSupport(Object sourceBean, boolean notifyOnEDT)
From source file:com.mightypocket.ashot.Mediator.java
public Mediator(final AShot application) { this.application = application; pcs = new SwingPropertyChangeSupport(this, true); toolBar = createToolBar();/*from w w w .ja v a 2s .c om*/ menuBar = createMenuBar(); statusBar = new StatusBar(this); mainPanel = new MainPanel(this); presenter = mainPanel.getPresenter(); imageSaver = new ImageSaver(this); fullScreenFrame = new FullScreenFrame(this); demon = new AndroDemon(this); installListeners(); initProperties(); }