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