1 /******************************************************************************* 2 * Copyright (c) 2003, 2004 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.swt.browser; 12 13 /** 14 * This adapter class provides default implementations for the 15 * methods described by the {@link LocationListener} interface. 16 * <p> 17 * Classes that wish to deal with {@link LocationEvent}'s can 18 * extend this class and override only the methods which they are 19 * interested in. 20 * </p> 21 * 22 * @since 3.0 23 */ 24 public abstract class LocationAdapter implements LocationListener { 25 26 public void changing(LocationEvent event) { 27 } 28 29 public void changed(LocationEvent event) { 30 } 31 } 32