blob: 3ab94cb49cd107a4d7c4d9a9489d42e1b83b4644 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2010 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() {
}
}