Package org.intellij.vcs.mks.actions

Source Code of org.intellij.vcs.mks.actions.ResynchronizeMembersAction

package org.intellij.vcs.mks.actions;

import com.intellij.openapi.project.Project;
import com.intellij.openapi.vfs.VirtualFile;
import org.intellij.vcs.mks.actions.api.ResyncAPICommand;
import org.jetbrains.annotations.NotNull;

// Referenced classes of package org.intellij.vcs.mks.actions:
//            BasicAction

public class ResynchronizeMembersAction extends MultipleTargetAction {

  public ResynchronizeMembersAction() {
    super(new ResyncAPICommand());
  }

  /**
   * just return the selected files
   *
   * @param project
   * @param files   the files target of the action
   * @return the files/dirs that should be resynchronized
   */
  @NotNull
  protected VirtualFile[] collectAffectedFiles(@NotNull Project project, @NotNull VirtualFile[] files) {
    return files;
  }
}
TOP

Related Classes of org.intellij.vcs.mks.actions.ResynchronizeMembersAction

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.