blob: 464f397ac2c430dbd49d06e6dd6b81a37f16b8dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 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.ajdt.pde.internal.ui.editor;
import org.eclipse.core.resources.*;
import org.eclipse.core.runtime.*;
import org.eclipse.ui.texteditor.*;
/**
* A marker annotation model whose underlying source of markers is
* a resource in the workspace.
* <p>
* This class may be instantiated; it is not intended to be subclassed.
* </p>
*/
public class SystemFileMarkerAnnotationModel
extends AbstractMarkerAnnotationModel {
protected IMarker[] retrieveMarkers() throws CoreException {
return null;
}
protected void deleteMarkers(IMarker[] markers) throws CoreException {
}
protected void listenToMarkerChanges(boolean listen) {
}
protected boolean isAcceptable(IMarker marker) {
return true;
}
}