aboutsummaryrefslogtreecommitdiff
path: root/tools/jsdoc-toolkit-2.4.0/app/handlers/FOODOC.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/jsdoc-toolkit-2.4.0/app/handlers/FOODOC.js')
-rw-r--r--tools/jsdoc-toolkit-2.4.0/app/handlers/FOODOC.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/jsdoc-toolkit-2.4.0/app/handlers/FOODOC.js b/tools/jsdoc-toolkit-2.4.0/app/handlers/FOODOC.js
new file mode 100644
index 0000000..b208f55
--- /dev/null
+++ b/tools/jsdoc-toolkit-2.4.0/app/handlers/FOODOC.js
@@ -0,0 +1,26 @@
+/**
+ 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.");
+};