Team:Freiburg Software/Developer/Code
From 2010.igem.org
(Difference between revisions)
(New page: {{:Team:Freiburg_Software/head}} <html> <div id=main_area> </div> </html>) |
|||
(4 intermediate revisions not shown) | |||
Line 2: | Line 2: | ||
<html> | <html> | ||
+ | <!-- page special style --> | ||
- | < | + | <style type="text/css"> |
+ | #subDeveloperCode a { | ||
+ | opacity: 0.92; | ||
+ | color: white; | ||
+ | } | ||
+ | |||
+ | </style> | ||
+ | |||
+ | <div id=main_area> | ||
+ | <h1>Code</h1> | ||
+ | <div class="pic_text_right"> | ||
+ | <img src="https://static.igem.org/mediawiki/2010/f/fc/Freiburg_10_software_Java-logo.png" /> | ||
+ | </div> | ||
+ | <p class="main"> | ||
+ | In this section of the page we want to give you an insight into the internals of SynBioWave: the program code.<br /> | ||
+ | Synbiowave is written in Java using the Google Wave API and Biojava. | ||
+ | Google provides an AbstractRobot class that developers can use to build their own Robots.<br /> | ||
+ | We created an AbstractSynBioWaveRobot that extends this robots. | ||
+ | </p> | ||
+ | <h2>AbstractSynBioWaveRobot</h2> | ||
+ | <p class="main"> | ||
+ | The AbstractSynBioWaveRobot class is one of the central classes in SynBioWave, because every robot is an implementation of this one. It handles all actions every robot has to do like menu extension and workspace access. | ||
</div> | </div> | ||
</html> | </html> |
Latest revision as of 17:29, 24 October 2010
Code
In this section of the page we want to give you an insight into the internals of SynBioWave: the program code.
Synbiowave is written in Java using the Google Wave API and Biojava.
Google provides an AbstractRobot class that developers can use to build their own Robots.
We created an AbstractSynBioWaveRobot that extends this robots.
AbstractSynBioWaveRobot
The AbstractSynBioWaveRobot class is one of the central classes in SynBioWave, because every robot is an implementation of this one. It handles all actions every robot has to do like menu extension and workspace access.