blob: a2d26d80f7ddd547f12822b3e34e86694493388b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 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.wst.validation.internal;
/**
* A class that wants to be notified when the validator preferences change.
* @author karasiuk
*
*/
public interface IValChangedListener {
/**
* The validators for the project have changed.
*
* @param project the project can be null, which means that the global validation preferences have
* changed.
*
* @param configSettingChanged If true a setting that could effect what gets validated has changed.
* If false, then only other types of settings (like whether to show a results dialog or not) have
* changed.
*/
public void validatorsForProjectChanged(org.eclipse.core.resources.IProject project, boolean configSettingChanged);
}