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

Quick Search    Search Deep

Source code: AI/NeuralNetworks/Notify.java


1   /* Notify.java */
2   
3   package AI.NeuralNetworks;
4   
5   /** 
6     This interface defines an Notify object.
7   */
8   public interface Notify {
9     
10    /**
11      this is the method called when is needed to notify 
12     */
13    public void notify(Object message);
14    
15    
16  }