Skip to content

Commit

Permalink
fix public javadoc task
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-actoron committed Jun 3, 2021
1 parent 7556ce5 commit 801ac7d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
3 changes: 3 additions & 0 deletions addons/javadoc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ dependencies
api project(':kernels:microservice')
api project(':platform:webservice')
api project(':serialization:traverser')

// Hack!!! referenced from e.g. applications-quickstart and gradle configure fails, when not found
api project(':distributions:minimal')
}
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ public static void main(String[] args)
// conf.addComponent("jadex/quickstart/cleanerworld/single/CleanerBDIAgentD3a.class");
// conf.addComponent("jadex/quickstart/cleanerworld/single/CleanerBDIAgent.class");

// conf.addComponent("quickstart/cleanerworld/multi/messaging/SimpleMessagingCleanerAgent.class");
// conf.addComponent("quickstart/cleanerworld/multi/messaging/SimpleMessagingCleanerAgent.class");
// conf.addComponent("quickstart/cleanerworld/multi/messaging/SimpleMessagingCleanerAgent.class");
// conf.addComponent("quickstart/cleanerworld/multi/messaging/SimpleMessagingCleanerAgent.class");
// conf.addComponent("jadex/quickstart/cleanerworld/multi/messaging/SimpleMessagingCleanerAgent.class");
// conf.addComponent("jadex/quickstart/cleanerworld/multi/messaging/SimpleMessagingCleanerAgent.class");
// conf.addComponent("jadex/quickstart/cleanerworld/multi/messaging/SimpleMessagingCleanerAgent.class");
// conf.addComponent("jadex/quickstart/cleanerworld/multi/messaging/SimpleMessagingCleanerAgent.class");

// Start a Jadex platform (asynchronously in background).
IFuture<IExternalAccess> fut = Starter.createPlatform(conf);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import jadex.micro.annotation.OnMessage;
import jadex.quickstart.cleanerworld.environment.ICleaner;
import jadex.quickstart.cleanerworld.environment.SensorActuator;
import jadex.quickstart.cleanerworld.environment.impl.Cleaner;
import jadex.quickstart.cleanerworld.gui.SensorGui;

/**
Expand Down Expand Up @@ -69,7 +68,7 @@ private void exampleBehavior(IBDIAgentFeature bdifeature)
* @param agent Internal API object of this agent used to send a message.
*/
@Plan(trigger=@Trigger(factadded="others"))
public void cleanerAdded(Cleaner other, IInternalAccess agent)
public void cleanerAdded(ICleaner other, IInternalAccess agent)
{
// Messages can be sent to any agent.
// Each agent decides itself how to react to a message.
Expand Down

0 comments on commit 801ac7d

Please sign in to comment.