blob: a3c73d1c5fcf826f28ff95a907e0b5c0037347d4 [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.
* @see Timer
*/
public interface ITimeoutListener {
/**
* Notifies this listener that its timeout request has expired.
*/
public void timeout();
}