Created
June 24, 2016 09:34
-
-
Save PanJarda/c4055a213fcd7bbf7bceb7815fa90e79 to your computer and use it in GitHub Desktop.
starUML javascript generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Generated On: 2016-6-24 | |
* Class: component | |
*/ | |
function component(){ | |
//Constructor | |
this.opts = null; | |
} | |
/** | |
* @return {null} | |
*/ | |
component.prototype.on = function(){ | |
//TODO: Implement Me | |
}; | |
/** | |
* @return {null} | |
*/ | |
component.prototype.off = function(){ | |
//TODO: Implement Me | |
}; | |
module.exports = {component:component}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Generated On: 2016-6-24 | |
* Class: filebrowser | |
*/ | |
var component = require('component'); | |
function filebrowser(){ | |
//Constructor | |
this.title = null; | |
this.items = null; | |
} | |
filebrowser.prototype = new component(); | |
/** | |
* @param e {} | |
* @return {null} | |
*/ | |
filebrowser.prototype.edit = function(e){ | |
//TODO: Implement Me | |
}; | |
/** | |
* @param e {} | |
* @return {null} | |
*/ | |
filebrowser.prototype.delete = function(e){ | |
//TODO: Implement Me | |
}; | |
module.exports = {filebrowser:filebrowser}; |
Author
PanJarda
commented
Jun 24, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment