Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 49fc484538eb62aa9ed46aa0527bb63bef479b00 (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
/*******************************************************************************
 * Copyright (c) 2009 Alena Laskavaia 
 * 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:
 *    Alena Laskavaia  - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.codan.core.model;

import org.eclipse.core.resources.IMarker;

public enum CodanSeverity {
	Info(IMarker.SEVERITY_INFO), Warning(IMarker.SEVERITY_WARNING), Error(
			IMarker.SEVERITY_ERROR);
	private int value;

	private CodanSeverity(int value) {
		this.value = value;
	}

	public int intValue() {
		return value;
	}
}

Back to the top