mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
git-svn-id: https://jsdoc.googlecode.com/svn/trunk/@14 d5942f49-e6af-b5c1-9d01-85772c7ca168
15 lines
394 B
JavaScript
15 lines
394 B
JavaScript
/** @constructor */
|
|
function TemplateBuilder(templateType) {
|
|
//** document me */
|
|
//this.templateType = templateType;
|
|
|
|
/** @constructor */
|
|
this.Template = function() { // nested constructor of constructor TemplateFactory
|
|
/** document me */
|
|
this.render = function(data) {
|
|
/** document me */
|
|
this.rendered = true;
|
|
}
|
|
};
|
|
|
|
} |