/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.draw2d; class ButtonStateTransitionListener { protected final void cancel() throws Exception { } public void canceled() { } final void cancelled() throws Exception { } protected final void press() throws Exception { } public void pressed() { } protected final void release() throws Exception { } public void released() { } public void resume() { } public void suspend() { } }