/***************************************************************** Agent1.java: Agent with two parallel Looper behaviours ----------- Author: Jean Vaucher Date: Aug 2 2003 *****************************************************************/ import jade.core.Agent; import jade.core.behaviours.*; public class Agent1 extends Agent { protected void setup() { addBehaviour( new Looper( this, 300 ) ); addBehaviour( new Looper( this, 500 ) ); } }