Package org.rssowl.core.interpreter

Examples of org.rssowl.core.interpreter.ITypeExporter


  /*
   * @see org.rssowl.core.interpreter.IInterpreterService#exportTo(java.io.File,
   * java.util.Collection, java.util.Set)
   */
  public void exportTo(File destination, Collection<? extends IFolderChild> elements, Set<Options> options) throws InterpreterException {
    ITypeExporter exporter = null;
    String fileName = destination.getName();
    int i = fileName.lastIndexOf("."); //$NON-NLS-1$
    if (i != -1 && !fileName.endsWith(".")) { //$NON-NLS-1$
      String formatName = fileName.substring(i + 1);
      exporter = fTypeExporters.get(formatName);
    }

    /* Use default as Fallback */
    if (exporter == null)
      exporter = fDefaultExporter;

    exporter.exportTo(destination, elements, options);
  }
View Full Code Here


  /*
   * @see org.rssowl.core.interpreter.IInterpreterService#exportTo(java.io.File,
   * java.util.Collection, java.util.Set)
   */
  public void exportTo(File destination, Collection<? extends IFolderChild> elements, Set<Options> options) throws InterpreterException {
    ITypeExporter exporter = null;
    String fileName = destination.getName();
    int i = fileName.lastIndexOf("."); //$NON-NLS-1$
    if (i != -1 && !fileName.endsWith(".")) { //$NON-NLS-1$
      String formatName = fileName.substring(i + 1);
      exporter = fTypeExporters.get(formatName);
    }

    /* Use default as Fallback */
    if (exporter == null)
      exporter = fDefaultExporter;

    exporter.exportTo(destination, elements, options);
  }
View Full Code Here

TOP

Related Classes of org.rssowl.core.interpreter.ITypeExporter

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.