/trunk/jsdoc-toolkit/app/handlers/FOODOC.js
http://jsdoc-toolkit.googlecode.com/ · JavaScript · 26 lines · 17 code · 4 blank · 5 comment · 0 complexity · 40267714b025887b01cc9e259088a799 MD5 · raw file
- /**
- This is the main container for the FOODOC handler.
- @namespace
- */
- FOODOC = {
- };
- /** The current version string of this application. */
- FOODOC.VERSION = "1.0";
- FOODOC.handle = function(srcFile, src) {
- LOG.inform("Handling file '" + srcFile + "'");
-
- return [
- new JSDOC.Symbol(
- "foo",
- [],
- "VIRTUAL",
- new JSDOC.DocComment("/** This is a foo. */")
- )
- ];
- };
- FOODOC.publish = function(symbolgroup) {
- LOG.inform("Publishing symbolgroup.");
- };