Skip to content

Instantly share code, notes, and snippets.

var get = function (name) {
return "public String get" + name.charAt(0).toUpperCase() + name.slice(1,name.length) + "() {\n \treturn this." + name + ";" + "\n}"
};