blob: 25a42409cf5b06ae572988672339065e9ec6a223 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Ericsson AB.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Ericsson - initial API and implementation
*******************************************************************************/
package org.eclipse.egerrit.internal.ui.compare;
import org.eclipse.egerrit.internal.model.CommentInfo;
import org.eclipse.jface.text.source.Annotation;
/*
* Implements an annotation that help us connect the annotation in a document with a gerrit comment
*/
public class GerritCommentAnnotation extends Annotation {
static final String TYPE = GerritCommentAnnotation.class.getName();
private CommentInfo comment;
private String formattedComment;
/**
* Instantiate an annotation with the comment and its textual representation shown in the document
*
* @param comment
* @param formattedComment
*/
public GerritCommentAnnotation(CommentInfo comment, String formattedComment) {
this.comment = comment;
this.formattedComment = formattedComment;
}
@Override
public String getText() {
return formattedComment;
}
/**
* Return the gerrit comment that is represented by this annotation
*
* @return the comment
*/
public CommentInfo getComment() {
return comment;
}
@Override
public String toString() {
if (comment == null) {
return "No comment info"; //$NON-NLS-1$
}
return comment.toString();
}
@Override
public String getType() {
return TYPE;
}
}