blob: 735c44c9ec99d9b940ee898597368fb5125e18c3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2009 IBM Corporation and others.
* All rights reserved. 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.jst.jsp.core.taglib;
/**
* A listener for changes in the index's records.
*/
public interface ITaglibIndexListener {
/**
* Notifies this listener that a change in the TaglibIndex, described by
* an ITaglibIndexDelta, has occurred
*
* @param delta
* the delta of changes
*/
void indexChanged(ITaglibIndexDelta delta);
}