can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / prototype_oblit.js
1 /** @constructor */
2 function Article() {
3 }
4
5 Article.prototype = {
6 /** instance get title */
7 getTitle: function(){
8 }
9 }
10
11 /** static get title */
12 Article.getTitle = function(){
13 }