Changes between Version 6 and Version 7 of Documentation/HowToWriteYourOwnDAC-Agent
- Timestamp:
- 17.08.2009 16:08:35 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentation/HowToWriteYourOwnDAC-Agent
v6 v7 17 17 We made the most tricky part so the rest is piece of cake :) 18 18 19 At the beginning of the implementation our agentwe have to remember about two things:19 At the beginning of the implementation we have to remember about two things: 20 20 - our agent has to extend abstract class org.dacframe.Agent 21 21 - in our agent we have to implement execute() method which defines computation done by our agent … … 24 24 25 25 26 [[java]] 26 27 27 {{{ 28 28 #!java 29 [[java]] 29 30 30 31 31 public class AgentPowerOfTwo extends Agent{ … … 71 71 72 72 {{{ 73 #!java 74 73 75 public void execute() throws DACException { 74 76 getLogger().info("AgentPowerOfTwo is starting execute()\n\t[n = "+n+



