blob: 1f0f3f342409c78ee689b0ec9585a834253c949d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2014 EclipseSource Muenchen GmbH 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:
* Eugen Neufeld - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.view.spi.context;
/**
* A Listener which gets notified when a {@link ViewModelContext} gets disposed.
*
* @author Eugen Neufeld
* @since 1.5
*/
public interface ViewModelContextDisposeListener {
/**
* This gets called whenever a {@link ViewModelContext} gets disposed.
*
* @param viewModelContext The disposed {@link ViewModelContext}.
*/
void contextDisposed(ViewModelContext viewModelContext);
}