Package fr.pingtimeout.jtail.gui.controller

Examples of fr.pingtimeout.jtail.gui.controller.FileIndexerWorker


                break;
        }

        // Préparer l'indexation du fichier
        final FileIndexer fileIndexer;
        final FileIndexerWorker fileIndexerWorker;

        try {
            fileIndexer = new FileIndexer(openFileModel.getFile(), indexerClass);
            fileIndexer.addObserver(this);
        } catch (FileNotFoundException e) {
            ExceptionHandler.handle(e, UIMessage.ERROR_FILE_NOT_FOUND, openFileModel.getFile().getName());
            return;
        }

        fileIndexerWorker = new FileIndexerWorker(fileIndexer);

        // Démarrer l'indexation
        fileIndexerWorker.execute();
    }
View Full Code Here

TOP

Related Classes of fr.pingtimeout.jtail.gui.controller.FileIndexerWorker

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.