/* * 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.ex; import com.intellij.lifecycle.PeriodicalTasksCloser; import com.intellij.openapi.project.Project; import com.intellij.openapi.vcs.*; import com.intellij.openapi.vcs.update.ActionInfo; import com.intellij.openapi.vcs.update.UpdateInfoTree; import com.intellij.openapi.vcs.update.UpdatedFiles; import com.intellij.ui.content.ContentManager; import org.jetbrains.annotations.CalledInAwt; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.List; public abstract class ProjectLevelVcsManagerEx extends ProjectLevelVcsManager { public static ProjectLevelVcsManagerEx getInstanceEx(Project project) { return (ProjectLevelVcsManagerEx) PeriodicalTasksCloser.getInstance().safeGetComponent(project, ProjectLevelVcsManager.class); } @Nullable public abstract ContentManager getContentManager(); @NotNull public abstract VcsShowSettingOption getOptions(VcsConfiguration.StandardOption option); @NotNull public abstract VcsShowConfirmationOptionImpl getConfirmation(VcsConfiguration.StandardConfirmation option); public abstract List<VcsShowOptionsSettingImpl> getAllOptions(); public abstract List<VcsShowConfirmationOptionImpl> getAllConfirmations(); public abstract void notifyDirectoryMappingChanged(); @CalledInAwt @Nullable public abstract UpdateInfoTree showUpdateProjectInfo(UpdatedFiles updatedFiles, String displayActionName, ActionInfo actionInfo, boolean canceled); public abstract void fireDirectoryMappingsChanged(); public abstract String haveDefaultMapping(); }