FOODOC.js 467 B

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