View Javadoc
1 /************************************************************ 2 * Copyright * 3 * Portions of this software are Copyright (c) 1993 - 2002, * 4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew * 5 * - http://www.nevrona.com/Indy/ * 6 ************************************************************/ 7 package org.indy; 8 9 import java.util.EventListener; 10 11 12 /*** 13 * Description of the Interface 14 * 15 *@author owen 16 */ 17 public interface IndyThreadListener extends EventListener { 18 /*** 19 * DOCUMENT ME! 20 * 21 * @param obj DOCUMENT ME! 22 */ 23 void onStopped(IndyThreadEvent obj); 24 25 /*** 26 * DOCUMENT ME! 27 * 28 * @param obj DOCUMENT ME! 29 */ 30 void onException(IndyThreadEvent obj); 31 }

This page was automatically generated by Maven