blob: a60d7c2670663eda984ff8f6766fe8c926286b2f [file] [log] [blame]
package org.eclipse.jdt.internal.debug.core;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* A timeout listener is notified when a timer expires.
*/
public interface ITimeoutListener {
/**
* Notifies this listener that its timeout request has expired.
*/
public void timeout();
}