Package entagged.tageditor.tools.renaming.pattern

Examples of entagged.tageditor.tools.renaming.pattern.DirectoryPattern


   */
  public FileRenamer(File[] selection, String directoryPattern,
      String filePattern, TransformSet transformSet) {
    assert selection != null;
    this.renameConfig = new RenameConfiguration(selection,
        new DirectoryPattern(directoryPattern), new FilePattern(
            filePattern), transformSet);
    /*
     * Applay transfomations
     */
    this.renameConfig.getDirectoryPattern().setTransformSet(transformSet);
 
View Full Code Here

TOP

Related Classes of entagged.tageditor.tools.renaming.pattern.DirectoryPattern

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.