/* * 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 registry listeners to selectively implement * a subset of the call-back protocol. All method implementations are empty. * * @since 1.9 */ public class ElementTypeRegistryAdapter implements IElementTypeRegistryListener2 { public ElementTypeRegistryAdapter() { super(); } public void elementTypeAdded(ElementTypeAddedEvent event) { // Pass } public void elementTypeRemoved(ElementTypeRemovedEvent event) { // Pass } public void adviceBindingAdded(AdviceBindingAddedEvent event) { // Pass } public void adviceBindingRemoved(AdviceBindingRemovedEvent event) { // Pass } }