blob: 68b296b8ddae8bb518703456be8eed0afd6217f9 [file] [log] [blame]
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.
*/
public void validatorsForProjectChanged(org.eclipse.core.resources.IProject project);
}