mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 03:01:12 +00:00
22 lines
416 B
Java
22 lines
416 B
Java
package com.iluwatar;
|
|
|
|
public class PeacefulState implements State {
|
|
|
|
private Mammoth mammoth;
|
|
|
|
public PeacefulState(Mammoth mammoth) {
|
|
this.mammoth = mammoth;
|
|
}
|
|
|
|
@Override
|
|
public void observe() {
|
|
System.out.println(String.format("%s is calm and peaceful.", mammoth));
|
|
}
|
|
|
|
@Override
|
|
public void onEnterState() {
|
|
System.out.println(String.format("%s calms down.", mammoth));
|
|
}
|
|
|
|
}
|