blob: d042d9ea87a5c5de06cefdd7dbf58cc22b5f210a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2013 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* 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)
*/
@Override
public void acceptProblem(IProblem problem) {
// do nothing
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ant.internal.ui.editor.outline.IProblemRequestor#beginReporting()
*/
@Override
public void beginReporting() {
// do nothing
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ant.internal.ui.editor.outline.IProblemRequestor#endReporting()
*/
@Override
public void endReporting() {
// do nothing
}
}