puml2code
Version:
PlantUML to code generator
21 lines (17 loc) • 381 B
JavaScript
class Parameter {
constructor(returnType, memberName, defaultValue) {
this.sReturnType = returnType;
this.sParameterName = memberName;
this.sDefaultValue = defaultValue;
}
getDefaultValue() {
return this.sDefaultValue;
}
getReturnType() {
return this.sReturnType;
}
getName() {
return this.sParameterName;
}
}
module.exports = Parameter;