Package com.mucommander.ui.layout

Examples of com.mucommander.ui.layout.AsyncPanel


    if (filePresenter == null) {
      showGenericErrorDialog();
      return;
    }

    AsyncPanel asyncPanel = new AsyncPanel() {
         
            @Override
            public JComponent getTargetComponent() {
                try {
                    // Ask the presenter to present the file
View Full Code Here


     * are loaded in a separate thread, when the panel becomes visible.
     * 
     * @return a 'File details' panel, showing details about the files that the job will operate on
     */
    protected AsyncPanel createFileDetailsPanel() {
        return new AsyncPanel() {
            @Override
            public JComponent getTargetComponent() {
                FileList fileList = new FileList(files, true);
                fileList.setVisibleRowCount(NB_FILE_DETAILS_ROWS);

View Full Code Here

TOP

Related Classes of com.mucommander.ui.layout.AsyncPanel

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.