summaryrefslogtreecommitdiffstats
path: root/tests/bugs151/atDecp/case4/MoodyImpl.java
blob: 01d926d9812f58b4f256e57bd70bf35180862dff (plain)
1
2
3
4
5
6
7
8
9
10
package theapp;

import moody.*;

public class MoodyImpl implements Moody {
  private Mood mood = Mood.HAPPY;

  public Mood getMood() { return mood; }
  public void setMood(Mood mood) { this.mood = mood; }
}