/******************************************************************************* * Copyright © 2005, 2013 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation * *******************************************************************************/ package org.eclipse.edt.ide.core.internal.builder; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IMarker; import org.eclipse.core.runtime.CoreException; import org.eclipse.edt.compiler.internal.core.builder.BuildException; import org.eclipse.edt.ide.core.internal.lookup.IFileInfo; /** * @author winghong */ public class SyntaxMarkerProblemRequestor extends AbstractFileInfoMarkerProblemRequestor { public SyntaxMarkerProblemRequestor(IFile file, IFileInfo fileInfo) { super(file, "SYN", fileInfo); removeMarkers(); } protected String getMarkerType(int problemKind) { return PARSER_PROBLEM; } protected String[] getMarkerTypes() { return new String[] {PARSER_PROBLEM}; } protected boolean shouldRemoveMarker(IMarker marker) { try { return marker.getType().equals(PARSER_PROBLEM); } catch (CoreException e) { throw new BuildException(e); } } }