Package org.jriaffe.blog.service

Examples of org.jriaffe.blog.service.ImportImageInfo


        }
        return imported;
    }
   
    private void notifyFileImportService(List<File>files, JTextComponent comp, Blog blog) {
        ImportImageInfo info = new ImportImageInfo();
        info.setFiles(files);
        info.setCaretPos(comp.getCaret().getDot());
        info.setComponent((JEditorPane)comp);
        info.setOutputDir(blog.getOutputDir());
        NotificationCenter.getDefaultNotificationCenter().postNotification(ImageImporterService.START_IMPORT, info);
    }
View Full Code Here

TOP

Related Classes of org.jriaffe.blog.service.ImportImageInfo

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.