File: TestBean.java

package info (click to toggle)
python-jpype 0.6.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,560 kB
  • sloc: cpp: 11,957; python: 3,844; java: 986; ansic: 875; makefile: 149; xml: 76; sh: 62
file content (78 lines) | stat: -rw-r--r-- 1,320 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package jpype.properties;

public class TestBean {

	private String getA;

	private String setA;

	private String property1;

	private String property2Invisible;

	private String property3;

	private String property4;

	private String property5;

	private String property6;

	private String property7;

	public String getProperty1() {
		return "get" + property1;
	}

	public String getProperty2() {
		return "get" + property2Invisible;
	}

	public String getProperty3() {
		return "get" + property3;
	}

	public String abcProperty4() {
		return "abc" + property4;
	}

	public String getProperty6() {
		return "get" + property7;
	}

	public String property1() {
		return "method";
	}

	protected String property2() {
		return "method";
	}

	protected String property3() {
		return "method";
	}

	public String returnProperty5() {
		return "return" + this.property5;
	}

	public void setProperty1(String property1) {
		this.property1 = "set" + property1;
	}

	public void setProperty2(String property2) {
		this.property2Invisible = "set" + property2;
	}

	public void setProperty3(String property3) {
		this.property3 = "set" + property3;
	}

	public void setProperty5(String property5) {
		this.property5 = "set" + property5;
	}
	
	public void setProperty6(String property6) {
		this.property7 = "set" + property6;
	}
}