Package penny.downloadmanager.model

Examples of penny.downloadmanager.model.ApplicationSettingsModel


    private String md5Selected;

    private PropertyChangeSupport propertySupport;

    public SettingsDialogModel() {
        appSettings = new ApplicationSettingsModel();
        appSettingsCopy = new ApplicationSettingsModel();
        visible = false;
        propertySupport = new PropertyChangeSupport(this);
    }
View Full Code Here


    /**
     * @param appSettings the appSettings to set
     */
    public void setAppSettings(ApplicationSettingsModel appSettings) {
        ApplicationSettingsModel oldValue = this.getAppSettings();
        this.appSettings = appSettings;
        propertySupport.firePropertyChange(PROP_SETTINGS, oldValue, appSettings);
    }
View Full Code Here

TOP

Related Classes of penny.downloadmanager.model.ApplicationSettingsModel

Copyright © 2018 www.massapicom. 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.