Package net.datacrow.console.components.panels

Examples of net.datacrow.console.components.panels.BackupFilePreviewPanel


        if (filter != null)
            browser.setFileFilter(filter);
    }
   
    public void setPreview(JPanel panel) {
        BackupFilePreviewPanel preview = new BackupFilePreviewPanel();
        browser.setAccessory(preview);
        browser.addPropertyChangeListener(preview);
    }
View Full Code Here


        setTitle(DcResources.getText("lblBackupAndRestore"));
        setHelpIndex("dc.tools.backup_restore");

        BackupFileFilter filter = new BackupFileFilter();
        fileFieldSource = ComponentFactory.getFileField(false, false, filter);
        fileFieldSource.setPreview(new BackupFilePreviewPanel());
       
        fileFieldTarget = ComponentFactory.getFileField(false, true);

        buildDialog();
        fileFieldTarget.setValue(DcSettings.getString(DcRepository.Settings.stBackupLocation));
View Full Code Here

TOP

Related Classes of net.datacrow.console.components.panels.BackupFilePreviewPanel

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.