thirdparty/jsdoctoolkit/app/handlers/FOODOC.js
changeset 3041 c8f47f0b6697
equal deleted inserted replaced
3040:8f9580309846 3041:c8f47f0b6697
       
     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 };