blob: 4d5e02617c9a3b40d3e8fe7c86a54d219985f92f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 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
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*******************************************************************************/
package org.eclipse.wst.sse.core;
/**
* This interface defines two new model level events. In order to avoid
* unnecessary last minute changes from clients, this interface was created as
* a "stop gap" measure. Eventually, it will become part of the normal
* ModelStateListener interface.
*/
public interface IModelStateListenerExtended extends IModelStateListener {
void modelAboutToBeReinitialized(IStructuredModel structuredModel);
void modelReinitialized(IStructuredModel structuredModel);
}