/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

  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. };