com.intellij.openapi.vcs.VcsDataKeys Maven / Gradle / Ivy
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.openapi.vcs;
import com.intellij.openapi.actionSystem.DataKey;
import com.intellij.openapi.util.Pair;
import com.intellij.openapi.vcs.changes.Change;
import com.intellij.openapi.vcs.changes.ChangeList;
import com.intellij.openapi.vcs.changes.ChangeRequestChain;
import com.intellij.openapi.vcs.history.VcsFileRevision;
import com.intellij.openapi.vcs.history.VcsHistoryProvider;
import com.intellij.openapi.vcs.history.VcsHistorySession;
import com.intellij.openapi.vcs.history.VcsRevisionNumber;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.openapi.vfs.pointers.VirtualFilePointer;
import com.intellij.util.Consumer;
import org.jetbrains.annotations.NonNls;
import java.io.File;
import java.util.List;
/**
* @author yole
*/
public interface VcsDataKeys {
DataKey IO_FILE_ARRAY = DataKey.create("IO_FILE_ARRAY");
DataKey IO_FILE = DataKey.create("IO_FILE");
DataKey VCS = DataKey.create("VCS");
DataKey VCS_NON_LOCAL_HISTORY_SESSION = DataKey.create("VCS_NON_LOCAL_HISTORY_SESSION");
DataKey HISTORY_SESSION = DataKey.create("VCS_HISTORY_SESSION");
DataKey VCS_FILE_REVISION = DataKey.create("VCS_FILE_REVISION");
DataKey VCS_FILE_REVISIONS = DataKey.create("VCS_FILE_REVISIONS");
DataKey VCS_VIRTUAL_FILE = DataKey.create("VCS_VIRTUAL_FILE");
DataKey FILE_PATH = DataKey.create("FILE_PATH");
DataKey FILE_PATH_ARRAY = DataKey.create("FILE_PATH_ARRAY");
DataKey
© 2015 - 2025 Weber Informatics LLC | Privacy Policy