blob: e2d976f1ce82442c84c1947c493ada29474d16d1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 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.ui.texteditor;
/**
* Extension interface for {@link org.eclipse.jface.text.IFindReplaceTarget}.
* Extends the find replace target with the concept of state validation.
*
* @since 2.1
*/
public interface IFindReplaceTargetExtension2 {
/**
* Validates the state of this target. The predominate intent of this method
* is to take any action probably necessary to ensure that the target can
* persistently be changed.
*
* @return <code>true</code> if the target was validated, <code>false</code> otherwise
*/
boolean validateTargetState();
}