Changes:
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / IElementChangedListener.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IElementChangedListener.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/IElementChangedListener.java
new file mode 100644 (file)
index 0000000..19a3ab8
--- /dev/null
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package net.sourceforge.phpdt.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);
+}