Examples of FactoryFileFilter


Examples of org.freeplane.view.swing.features.filepreview.ViewerController.FactoryFileFilter

    super(fc);
  }

  @Override
  protected void updateView(final File file) {
    final FactoryFileFilter filter = (FactoryFileFilter) fc.getFileFilter();
    final Dimension size = getSize();
    size.width -= 2 * BORDER_WIDTH;
    size.height -= 2 * BORDER_WIDTH;
    JComponent viewer;
    try {
      viewer = (JComponent) filter.getFactory().createViewer(file.getAbsoluteFile().toURI(), size);
    }
    catch (final MalformedURLException e) {
      LogUtils.warn(e);
      return;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.