01: package org.drools.eclipse.editors;
02:
03: import org.eclipse.jface.text.source.Annotation;
04:
05: /**
06: * Problem annotation for Drools.
07: *
08: * @author <a href="mailto:kris_verlaenen@hotmail.com">Kris Verlaenen</a>
09: */
10: public class DRLProblemAnnotation extends Annotation {
11:
12: public static final String ERROR = "org.drools.eclipse.editors.error_annotation";
13:
14: public DRLProblemAnnotation(String text) {
15: super (ERROR, false, text);
16: }
17:
18: }
|