1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix API error in autotools

Change-Id: Ieeebe49cda9bd44155c0033dcf4f78dd130ad6e7
Reviewed-on: https://git.eclipse.org/r/12537
Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
IP-Clean: Jeff Johnston <jjohnstn@redhat.com>
Tested-by: Jeff Johnston <jjohnstn@redhat.com>
This commit is contained in:
Marc-Andre Laperle 2013-05-06 11:15:55 -04:00 committed by Jeff Johnston
parent 8927ac924d
commit fa9cd1cecd

View file

@ -1,13 +1,13 @@
/*******************************************************************************
* Copyright (c) 2006, 2010 Siemens AG.
* Copyright (c) 2006, 2013 Siemens AG.
* All rights reserved. This content 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:
* Norbert Ploett - Initial implementation
* Red Hat Inc. - Modified for use with autotools plug-in
* Norbert Ploett - Initial implementation
* Red Hat Inc. - Modified for use with autotools plug-in
*******************************************************************************/
package org.eclipse.cdt.internal.autotools.core;
@ -21,7 +21,17 @@ import org.eclipse.core.runtime.IPath;
*/
public class AutotoolsProblemMarkerInfo {
public static enum Type{PACKAGE, HEADER, PROG, LIB, FILE, GENERIC}
public static enum Type{
PACKAGE,
HEADER,
PROG,
/**
* @since 1.2
*/
LIB,
FILE,
GENERIC
}
private ProblemMarkerInfo marker;