aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/b/pkg/B.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/b/pkg/B.java')
-rw-r--r--src/test/java/b/pkg/B.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/test/java/b/pkg/B.java b/src/test/java/b/pkg/B.java
index 3af7381..b153be4 100644
--- a/src/test/java/b/pkg/B.java
+++ b/src/test/java/b/pkg/B.java
@@ -20,6 +20,48 @@ public class B extends BParent implements BInterface {
return this;
}
+ public B getSyntheticB() {
+ return this;
+ }
+
+ public void setSyntheticB(B arg) {
+ }
+
+ public boolean isSyntheticBooleanB() {
+ return false;
+ }
+
+ public void setSyntheticBooleanB(boolean arg) {
+ }
+
+ public B getNonSyntheticB() {
+ return this;
+ }
+
+ public void setNonSyntheticB(B arg) {
+ }
+
+ public boolean isNonSyntheticBooleanB() {
+ return false;
+ }
+
+ public void setNonSyntheticBooleanB(boolean arg) {
+ }
+
+ public B getterB() {
+ return this;
+ }
+
+ public void setterB(B arg) {
+ }
+
+ public boolean getterBooleanB() {
+ return false;
+ }
+
+ public void setterBooleanB(boolean arg) {
+ }
+
public void bOverloaded() {
}