package com.iluwatar; /** * * State interface. * */ public interface State { void onEnterState(); void observe(); }