blob: 50d4089aeb8f0a0445089e0f923878615a88eadf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others.
*
* 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.e4.core.internal.contexts;
public interface IEclipseContextDebugger {
String SERVICE_NAME = IEclipseContextDebugger.class.getName();
public enum EventType {
CONSTRUCTED, DISPOSED, LISTENER_ADDED, ACTIVATED, DEACTIVATED
}
void notify(EclipseContext context, EventType type, Object data);
}