I have this simple java code:
public class AnAgent extends Agent
{
protected void setup()
{
System.out.println("Hello "+getAID().getName()+". I am ready. You?");
}
}
I read https://wrjih.wordpress.com/2008/11/29/running-jade-under-eclipse/ to integrate JADE in Eclipse. I followed every step.
but it gives me
Where is my mistake ? Why did not I see my agent ?
Issue Solved
In the 2nd picture, in Arguments
tab, you have to write:
-gui Agent1:AnAgent
instead of
-gui jade.Boot Agent1:AnAgent.java