aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs192/513528/Apple.java
blob: 658616ae891ea28c480d992524760360ef91ea5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package de.scrum_master.app;

public class Apple {
  private String type;
  private boolean sweet;

  public Apple(String type, boolean sweet) {
    this.type = type;
    this.sweet = sweet;
  }

  public String getType() {
    return type;
  }

  public boolean isSweet() {
    return sweet;
  }
}