/* * Copyright 2000-2015 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.diff.requests; import com.intellij.diff.contents.DiffContent; import com.intellij.util.containers.ContainerUtil; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.List; public class SimpleDiffRequest extends ContentDiffRequest { @Nullable private final String myTitle; @NotNull private final List<DiffContent> myContents; @NotNull private final List<String> myContentTitles; public SimpleDiffRequest(@Nullable String title, @NotNull DiffContent content1, @NotNull DiffContent content2, @Nullable String title1, @Nullable String title2) { this(title, ContainerUtil.list(content1, content2), ContainerUtil.list(title1, title2)); } public SimpleDiffRequest(@Nullable String title, @NotNull DiffContent content1, @NotNull DiffContent content2, @NotNull DiffContent content3, @Nullable String title1, @Nullable String title2, @Nullable String title3) { this(title, ContainerUtil.list(content1, content2, content3), ContainerUtil.list(title1, title2, title3)); } public SimpleDiffRequest(@Nullable String title, @NotNull List<DiffContent> contents, @NotNull List<String> titles) { assert contents.size() == titles.size(); myTitle = title; myContents = contents; myContentTitles = titles; } @NotNull @Override public List<DiffContent> getContents() { return myContents; } @NotNull @Override public List<String> getContentTitles() { return myContentTitles; } @Nullable @Override public String getTitle() { return myTitle; } @Override public void onAssigned(boolean isAssigned) { for (DiffContent content : myContents) { content.onAssigned(isAssigned); } } }