Package entagged.tageditor.tools.renaming.data

Examples of entagged.tageditor.tools.renaming.data.RenameConfiguration


  /**
   * Creates the fields.
   */
  private void initialize() {
    RenameConfiguration config = inspectionControl.fileRenamer.getConfig();
    this.setLayout(new GridBagLayout());
    // Copy if Unmodifiable
    copyIfUnmodifiableBox = new JCheckBox(LangageManager
        .getProperty("tagrename.option.copyifunmodifiable"));
    copyIfUnmodifiableBox.setSelected(config.isCopyUnmodifiableFiles());
    this.add(copyIfUnmodifiableBox, new GridBagConstraints(0, 0, 1, 1, 0.0,
        0.0, GridBagConstraints.CENTER, GridBagConstraints.NONE,
        new Insets(2, 2, 2, 2), 0, 0));
    copyIfUnmodifiableBox.addActionListener(this);
  }
View Full Code Here


   *            The set of transformation which will be used.
   */
  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
     */
 
View Full Code Here

TOP

Related Classes of entagged.tageditor.tools.renaming.data.RenameConfiguration

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.