Package br.com.jteam.jfcm.controller.listener

Examples of br.com.jteam.jfcm.controller.listener.ShowHistoryFileContentListener


    try {
      while (fileIterator.hasNext()) {
        PresentationFile<?> file = fileIterator.next();
        String text = ++i + " - " + file.getPath();
        JMenuItem historyItem;
        ShowHistoryFileContentListener listener =
          new ShowHistoryFileContentListener(adapter.openZipContent(file.getPath()));
        historyItem = itemFactory.create(text, String.valueOf(i).charAt(0), listener);
        historyFileMenuItens.add(historyItem);
      }
    } catch (FileListContentAdapterException e) {
      JOptionPane.showMessageDialog(null, BaseBundle.getValue("error.openning.file"));
View Full Code Here

TOP

Related Classes of br.com.jteam.jfcm.controller.listener.ShowHistoryFileContentListener

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.