blob: 6a0fe82921502c4af9da17378c4e90f0b7a01952 [file] [log] [blame]
package org.eclipse.cdt.internal.ui.editor;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Interface of annotations representing problems.
*/
public interface IProblemAnnotation {
String getMessage();
int getId();
String[] getArguments();
boolean isTemporaryProblem();
boolean isWarning();
boolean isError();
boolean isProblem();
}