blob: db678daa31979b709cf0f07b9c71d6e3edf7696d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 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.ant.tests.ui.editor.support;
import org.eclipse.ant.internal.ui.model.IProblem;
import org.eclipse.ant.internal.ui.model.IProblemRequestor;
public class TestProblemRequestor implements IProblemRequestor {
/* (non-Javadoc)
* @see org.eclipse.ant.internal.ui.editor.outline.IProblemRequestor#acceptProblem(org.eclipse.ant.internal.ui.editor.outline.IProblem)
*/
public void acceptProblem(IProblem problem) {
}
/* (non-Javadoc)
* @see org.eclipse.ant.internal.ui.editor.outline.IProblemRequestor#beginReporting()
*/
public void beginReporting() {
}
/* (non-Javadoc)
* @see org.eclipse.ant.internal.ui.editor.outline.IProblemRequestor#endReporting()
*/
public void endReporting() {
}
}