Navigation


Changes between Version 6 and Version 7 of Documentation/HowToWriteYourOwnDAC-Agent

Show
Ignore:
Timestamp:
17.08.2009 16:08:35 (4 years ago)
Author:
klider
Comment:

tutorial

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/HowToWriteYourOwnDAC-Agent

    v6 v7  
    1717We made the most tricky part so the rest is piece of cake :) 
    1818 
    19 At the beginning of the implementation our agent we have to remember about two things: 
     19At the beginning of the implementation we have to remember about two things: 
    2020 - our agent has to extend abstract class org.dacframe.Agent 
    2121 - in our agent we have to implement execute() method which defines computation done by our agent 
     
    2424 
    2525 
    26 [[java]] 
     26 
    2727{{{ 
    2828#!java 
    29 [[java]] 
     29 
    3030 
    3131public class AgentPowerOfTwo extends Agent{ 
     
    7171 
    7272{{{ 
     73#!java 
     74 
    7375public void execute() throws DACException { 
    7476        getLogger().info("AgentPowerOfTwo is starting execute()\n\t[n = "+n+