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:
parent
8927ac924d
commit
fa9cd1cecd
1 changed files with 14 additions and 4 deletions
|
@ -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
|
* All rights reserved. This content 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
|
||||||
* http://www.eclipse.org/legal/epl-v10.html
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Norbert Ploett - Initial implementation
|
* Norbert Ploett - Initial implementation
|
||||||
* Red Hat Inc. - Modified for use with autotools plug-in
|
* Red Hat Inc. - Modified for use with autotools plug-in
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.cdt.internal.autotools.core;
|
package org.eclipse.cdt.internal.autotools.core;
|
||||||
|
@ -21,7 +21,17 @@ import org.eclipse.core.runtime.IPath;
|
||||||
*/
|
*/
|
||||||
public class AutotoolsProblemMarkerInfo {
|
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;
|
private ProblemMarkerInfo marker;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue