Menu

Tree [r411] /
 History

HTTPS access


File Date Author Commit
 hawk 2013-01-30 msahu98 [r403] fixed
 images 2012-03-03 msahu98 [r341] fixed
 installer 2012-03-04 msahu98 [r349] fixed
 mvn 2013-03-14 msahu98 [r411] changed version
 release 2012-03-04 msahu98 [r353] fixed
 scripts 2013-01-26 msahu98 [r399] fixed
 README.TXT 2012-03-04 msahu98 [r349] fixed
 index.html 2011-10-09 msahu98 [r308] fixed

Read Me

How to install hawk in ubuntu
---------------------------------

1) Execute install.sh
   sudo install.sh


How to install hawk in windows
---------------------------------

1) Execute install.cmd
   install.cmd



How to use SampleApp 
---------------------------------

1) Open a shell window
2) Go to SampleApp directory   
2) hawk -s ./setting.conf -training
   This will give the o/p as below.
 		     HttpModule
                            |
                            |
                            |------->Wait()
                            |------->Execute(var hawkStruct)
                            |------->Reset()


                     MathModule
                            |
                            |
                            |------->Sqrt(var number)
                            |------->Asin(var number)
                            |------->Atan(var number)
                            |------->Abs(var number)
                            |------->Sinh(var number)
                            |------->Acos(var number)
                            |------->Floor(var number)
                            |------->Sin(var number)
                            |------->Ceil(var number)
                            |------->Exp(var number)
                            |------->Cos(var number)
                            |------->Log(var number)
                            |------->Cosh(var number)


                     OddModule
                            |
                            |
                            |------->CheckOdd(var number)


                     PrimeModule
                            |
                            |
                            |------->CheckPrime(var number)


                     SystemModule
                            |
                            |
                            |------->Sort(var array)
                            |------->DumpStack()
                            |------->CurrentTime()
                            |------->Length(var array)
                            |------->Execute(var command)


                     FileModule
                            |
                            |
                            |------->Write(var array)
                            |------->Read(var array,var filename)
                            |------->Delete(var filename)
                            |------->List(var array,var filename)


                     EvenModule
                            |
                            |
                            |------->CheckEven(var number)


EvenModule , OddModule , PrimeModule are SampleApp's implementations of j-hawk framework's IModule contract.

For more help on hawk, please refer to hawk's manual page.

man hawk


=========================================