ExamplePlan01.java
package bdi4jade.extension.planselection.learningbased.example;
import bdi4jade.goal.GoalTemplateFactory;
import bdi4jade.plan.DefaultPlan;
public class ExamplePlan01 extends DefaultPlan {
public ExamplePlan01() {
super(GoalTemplateFactory.goalOfType(ExampleGoal.class), ExamplePlanBody.class);
}
}