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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
/* ****************************************************************************
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
See NOTICE file for details.
**************************************************************************** */
package jpype.properties;
public class TestBean
{
private String getA;
private String setA;
private String property1;
private String property2Invisible;
private String property3;
public String property4;
private String property5;
private String property6;
public 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;
}
public static String m1;
public String m2;
public String m3;
public String m4;
public String m5;
public String getPropertyMember()
{
return this.m2;
}
public void setPropertyMember(String value)
{
this.m2 = value;
}
public static String getPropertyStatic()
{
return m1;
}
public static void setPropertyStatic(String value)
{
m1 = value;
}
public String getReadOnly()
{
return this.m3;
}
public void setWriteOnly(String value)
{
this.m4 = value;
}
public void setWith(String value)
{
this.m5 = value;
}
public String getWith()
{
return this.m5;
}
public void setFailure1(String value, int i)
{
}
public String getFailure2(int i)
{
return "fail";
}
}
|