mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-16 04:35:45 +02:00
bug 352166: Expressed IMarkerGenerator severity constants via
corresponding IMarker ones.
This commit is contained in:
parent
8bfbc64c7e
commit
fe0611ef33
1 changed files with 5 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2000, 2009 QNX Software Systems and others.
|
* Copyright (c) 2000, 2011 QNX Software Systems and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -10,6 +10,7 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.core;
|
package org.eclipse.cdt.core;
|
||||||
|
|
||||||
|
import org.eclipse.core.resources.IMarker;
|
||||||
import org.eclipse.core.resources.IResource;
|
import org.eclipse.core.resources.IResource;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -17,9 +18,9 @@ import org.eclipse.core.resources.IResource;
|
||||||
* @noextend This interface is not intended to be extended by clients.
|
* @noextend This interface is not intended to be extended by clients.
|
||||||
*/
|
*/
|
||||||
public interface IMarkerGenerator {
|
public interface IMarkerGenerator {
|
||||||
int SEVERITY_INFO = 0;
|
int SEVERITY_INFO = IMarker.SEVERITY_INFO; // 0
|
||||||
int SEVERITY_WARNING = 1;
|
int SEVERITY_WARNING = IMarker.SEVERITY_WARNING; // 1
|
||||||
int SEVERITY_ERROR_RESOURCE = 2;
|
int SEVERITY_ERROR_RESOURCE = IMarker.SEVERITY_ERROR; // 2
|
||||||
int SEVERITY_ERROR_BUILD = 3;
|
int SEVERITY_ERROR_BUILD = 3;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue