/** *
 *  CIntelligence.java
 *
 *  Revisions: 1.0 Nov. 13, 2002
 *               Created the CIntelligence class
 *			   1.1 Nov. 23, 3003
 *				 Created, Compiled, Finished
 *
 *  
* * @author Jose Manuel Caban * @version Version 1.1, Nov. 23, 2002 */ public abstract class CIntelligence implements Constants{ /** *Holds who controls the Intelligence */ String type; /** *Default Constructor, set type to CPU */ public CIntelligence(){ type = "CPU"; } /** *@param, set type to this */ public CIntelligence(String type){ this.type = type; } }// end of class CIntelligence