blob: bb60266aa85d7003bbc7a04775bce4cef185f3e5 [file] [log] [blame]
/*
* Copyright 2000-2014 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 org.jetbrains.idea.svn.dialogs;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.vfs.VirtualFile;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.idea.svn.SvnVcs;
/**
* @author Konstantin Kolosovsky.
*/
public class MergeContext {
@NotNull private final Project myProject;
@NotNull private final String myBranchName;
@NotNull private final VirtualFile myRoot;
@NotNull private final WCInfo myWcInfo;
@NotNull private String mySourceUrl;
@NotNull private final SvnVcs myVcs;
@NotNull private final String myTitle;
public MergeContext(@NotNull SvnVcs vcs,
@NotNull String sourceUrl,
@NotNull WCInfo wcInfo,
@NotNull String branchName,
@NotNull VirtualFile root) {
myVcs = vcs;
myProject = vcs.getProject();
myBranchName = branchName;
myRoot = root;
mySourceUrl = sourceUrl;
myWcInfo = wcInfo;
myTitle = "Merge from " + myBranchName;
}
@NotNull
public Project getProject() {
return myProject;
}
@NotNull
public String getBranchName() {
return myBranchName;
}
@NotNull
public VirtualFile getRoot() {
return myRoot;
}
@NotNull
public WCInfo getWcInfo() {
return myWcInfo;
}
@NotNull
public String getSourceUrl() {
return mySourceUrl;
}
@NotNull
public SvnVcs getVcs() {
return myVcs;
}
@NotNull
public String getTitle() {
return myTitle;
}
public void setSourceUrl(@NotNull String sourceUrl) {
mySourceUrl = sourceUrl;
}
}