Package org.intellij.vcs.mks.actions

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

package org.intellij.vcs.mks.actions;

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

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

public class DropMembersAction extends MultipleTargetAction {

  public DropMembersAction() {
    super(new DropMemberAPICommand());
  }

  @Override
  protected boolean isEnabled(@NotNull Project project, @NotNull MksVcs mksvcs, @NotNull VirtualFile... vFiles) {
    // todo may check if file exists in vcs
    return true;
  }
}
TOP

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

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.