can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / handlers / FOODOC.js
CommitLineData
629a09ae
DV
1/**
2 This is the main container for the FOODOC handler.
3 @namespace
4*/
5FOODOC = {
6};
7
8/** The current version string of this application. */
9FOODOC.VERSION = "1.0";
10
11FOODOC.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
24FOODOC.publish = function(symbolgroup) {
25 LOG.inform("Publishing symbolgroup.");
26};