|
|
Browse by Tags
All Tags » identity » == (RSS)
-
good morning,
I have an interface IMorning :
public interface IMorning {
enum Mood {GOOD,BAD};
Mood getMood();
}
And I have the class Morning
public class Morning implements IMorning, Serializable {
private static final long serialVersionUID = 5386061933351709956L;
private Mood mood;
Mood ...
|
|
|