[svn r115] added the rest of foei
This commit is contained in:
parent
a9ea03e737
commit
ed5da52253
75 changed files with 6511 additions and 1 deletions
|
|
@ -1,3 +1,14 @@
|
|||
|
||||
|
||||
dfg
|
||||
package com.idcanet.foei.tests;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author Willem Cazander
|
||||
* @version 1.0 Jul 27, 2006
|
||||
*/
|
||||
public class SimpleFoeiTests {
|
||||
}
|
||||
22
tests/com/idcanet/foei/tests/TestEventThreadListener.java
Normal file
22
tests/com/idcanet/foei/tests/TestEventThreadListener.java
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
package com.idcanet.foei.tests;
|
||||
|
||||
import com.idcanet.foei.core.EventThreadListener;
|
||||
import com.idcanet.foei.core.FoeiContext;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author Willem Cazander
|
||||
* @version 1.0 Jul 27, 2006
|
||||
*/
|
||||
public class TestEventThreadListener implements EventThreadListener {
|
||||
|
||||
public void startThread(FoeiContext foeiContext) {
|
||||
System.out.println("START: "+Thread.currentThread().getName()+" context: "+foeiContext.getName());
|
||||
}
|
||||
|
||||
public void stopThread(FoeiContext foeiContext) {
|
||||
System.out.println("STOP: "+Thread.currentThread().getName()+" context: "+foeiContext.getName());
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue