blob: b62f5ba1f43c7b6c996e1f83f60236517dd8a12a [file] [log] [blame]
/*
* Copyright (c) 2015 Christian W. Damus 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:
* Christian W. Damus - initial API and implementation
*/
package org.eclipse.gmf.runtime.emf.type.core;
/**
* A convenience for implementers of context manager listeners to selectively
* implement a subset of the call-back protocol. All method implementations are
* empty.
*
* @since 1.9
*/
public class ClientContextManagerAdapter implements IClientContextManagerListener {
public ClientContextManagerAdapter() {
super();
}
public void clientContextAdded(ClientContextAddedEvent event) {
// Pass
}
public void clientContextRemoved(ClientContextRemovedEvent event) {
// Pass
}
}