| Commit | Line | Data |
|---|---|---|
| 629a09ae DV |
1 | /** |
| 2 | This is the main container for the FOODOC handler. | |
| 3 | @namespace | |
| 4 | */ | |
| 5 | FOODOC = { | |
| 6 | }; | |
| 7 | ||
| 8 | /** The current version string of this application. */ | |
| 9 | FOODOC.VERSION = "1.0"; | |
| 10 | ||
| 11 | FOODOC.handle = function(srcFile, src) { | |
| 12 | LOG.inform("Handling file '" + srcFile + "'"); | |
| 13 | ||
| 14 | return [ | |
| 15 | new JSDOC.Symbol( | |
| 16 | "foo", | |
| 17 | [], | |
| 18 | "VIRTUAL", | |
| 19 | new JSDOC.DocComment("/** This is a foo. */") | |
| 20 | ) | |
| 21 | ]; | |
| 22 | }; | |
| 23 | ||
| 24 | FOODOC.publish = function(symbolgroup) { | |
| 25 | LOG.inform("Publishing symbolgroup."); | |
| 26 | }; |