From fa9cd1cecdd7a31efb13dc93f3511891f8b4712f Mon Sep 17 00:00:00 2001 From: Marc-Andre Laperle Date: Mon, 6 May 2013 11:15:55 -0400 Subject: [PATCH] Fix API error in autotools Change-Id: Ieeebe49cda9bd44155c0033dcf4f78dd130ad6e7 Reviewed-on: https://git.eclipse.org/r/12537 Reviewed-by: Jeff Johnston IP-Clean: Jeff Johnston Tested-by: Jeff Johnston --- .../core/AutotoolsProblemMarkerInfo.java | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/AutotoolsProblemMarkerInfo.java b/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/AutotoolsProblemMarkerInfo.java index 195c39679bf..1e836314895 100644 --- a/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/AutotoolsProblemMarkerInfo.java +++ b/build/org.eclipse.cdt.autotools.core/src/org/eclipse/cdt/internal/autotools/core/AutotoolsProblemMarkerInfo.java @@ -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;