blob: f8bade5a746c1e1c7a2d307db4ee40812915eb5f [file] [log] [blame]
package com.intellij.vcs.log.graph.render;
import com.intellij.vcs.log.VcsRef;
import org.jetbrains.annotations.NotNull;
import java.util.Collection;
/**
* @author erokhins
*/
public class CommitCell {
private final String text;
private final Collection<VcsRef> refsToThisCommit;
public CommitCell(@NotNull String text, @NotNull Collection<VcsRef> refsToThisCommit) {
this.text = text;
this.refsToThisCommit = refsToThisCommit;
}
public String getText() {
return text;
}
public Collection<VcsRef> getRefsToThisCommit() {
return refsToThisCommit;
}
}