Skip to content

Instantly share code, notes, and snippets.

@PanJarda
Created June 24, 2016 09:34
Show Gist options
  • Save PanJarda/c4055a213fcd7bbf7bceb7815fa90e79 to your computer and use it in GitHub Desktop.
Save PanJarda/c4055a213fcd7bbf7bceb7815fa90e79 to your computer and use it in GitHub Desktop.
starUML javascript generator
/**
* 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};
/**
* 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};
/**
* Generated On: 2016-6-24
* Class: navbar
*/
var component = require('component');
function navbar(){
//Constructor
this.title = null;
}
navbar.prototype = new component();
/**
* @return {null}
*/
navbar.prototype.changeTitle = function(){
//TODO: Implement Me
};
module.exports = {navbar:navbar};
@PanJarda
Copy link
Author

staruml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment