Example usage for javax.swing.event SwingPropertyChangeSupport SwingPropertyChangeSupport

List of usage examples for javax.swing.event SwingPropertyChangeSupport SwingPropertyChangeSupport

Introduction

In this page you can find the example usage for javax.swing.event SwingPropertyChangeSupport SwingPropertyChangeSupport.

Prototype

public SwingPropertyChangeSupport(Object sourceBean, boolean notifyOnEDT) 

Source Link

Document

Constructs a SwingPropertyChangeSupport object.

Usage

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();

}