blob: 0f7ad2ac8f919d6224533bafa29b8ee2bf1dee77 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 ILOG and others.
* 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:
* Joel Cheuoua - Initial API and implementation
*******************************************************************************/
package org.eclipse.jet.internal.editor.annotations;
import org.eclipse.jet.core.parser.ProblemSeverity;
import org.eclipse.jet.core.parser.ast.Problem;
import org.eclipse.jface.text.source.Annotation;
public class JETProblemAnnotation extends Annotation {
public static final String ERROR_ANNOTATION_TYPE = "org.eclipse.jet.editor.error";
public static final String WARNING_ANNOTATION_TYPE = "org.eclipse.jet.editor.warning";
public static final String INFO_ANNOTATION_TYPE = "org.eclipse.jet.editor.info";
public JETProblemAnnotation(Problem problem) {
if (problem.getProblemSeverity() == ProblemSeverity.ERROR)
setType(ERROR_ANNOTATION_TYPE);
else if (problem.getProblemSeverity() == ProblemSeverity.WARNING)
setType(WARNING_ANNOTATION_TYPE);
setText(problem.getMessage());
}
}