Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: cxtable/xTimed.java


1   package cxtable;
2   
3   /*part of a timer thing... timer is set with this object's reference..
4   the timer either is true (recurrent) or false(once)... when the 
5   timeout is done..it calls the go method*/
6   
7   
8   public interface xTimed{
9   
10  public void go();
11  
12  }