aboutsummaryrefslogtreecommitdiff
path: root/template/java/snip-getter-setter.java
blob: 0a4a54ed783a7086b714c8229c023f0de78e660c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * get {{_input_:name}}
 * @return {{_input_:name}}
 */
public {{_input_:type}} get{{_expr_:substitute('{{_input_:name}}', '\w\+', '\u\0', '')}}() {
	return {{_input_:name}};
}

/**
 * set {{_input_:name}}
 * @param {{_input_:name}}
 */
public void set{{_expr_:substitute('{{_input_:name}}', '\w\+', '\u\0', '')}}({{_input_:type}} {{_input_:name}}) {
	this.{{_input_:name}} = {{_input_:name}};
}