blob: dac35295b842d8039cb9f213199a2787bc5743e8 [file] [log] [blame]
/**********************************************************************
Copyright (c) 2000, 2001, 2002 IBM Corp. and others.
All rights reserved.   This program and the accompanying materials
are made available under the terms of the Common Public License v0.5
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v05.html
 
Contributors:
IBM Corporation - initial API and implementation
**********************************************************************/
package org.eclipse.jdt.core;
import org.eclipse.jdt.internal.core.*;
/**
* An element changed listener receives notification of changes to Java elements
* maintained by the Java model.
* <p>
* This interface may be implemented by clients.
* </p>
*/
public interface IElementChangedListener {
/**
* Notifies that one or more attributes of one or more Java elements have changed.
* The specific details of the change are described by the given event.
*
* @param event the change event
*/
public void elementChanged(ElementChangedEvent event);
}