Package at.bestsolution.ext.swing.dialog

Examples of at.bestsolution.ext.swing.dialog.FilePreviewer


    /** Creates a new instance of PictureDialog */
    public PictureDialog()
    {
        super();
       
        FilePreviewer previewer = new FilePreviewer(this);
        setAccessory( previewer );
       
        GenericFileFilter filter = new GenericFileFilter( MainWindow.getI18n().getString("PictureDialog"), new String[]{"png", "gif", "jpg"} );
        addChoosableFileFilter( filter );
    }
View Full Code Here

TOP

Related Classes of at.bestsolution.ext.swing.dialog.FilePreviewer

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.