Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a4c16792db55baf096cb08f4400d78ec1c8e3a2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*******************************************************************************
 * Copyright (c) 2000, 2003 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.ui.externaltools.internal.ant.editor.outline;

import org.eclipse.jface.text.IRegion;


public interface IProblem extends IRegion {

	/**
	 * Returns the problem code
	 *
	 * @return the problem code
	 */
	String getCode();

	/**
	 * Answer a localized, human-readable message string which describes the problem.
	 *
	 * @return a localized, human-readable message string which describes the problem
	 */
	String getMessage();

	/**
	 * Checks the severity to see if the Error bit is set.
	 *
	 * @return true if the Error bit is set for the severity, false otherwise
	 */
	boolean isError();

	/**
	 * Checks the severity to see if the Error bit is not set.
	 *
	 * @return true if the Error bit is not set for the severity, false otherwise
	 */
	boolean isWarning();

}

Back to the top