package com.example.stimulus; import com.example.stimulusStrategy.Clock; import com.example.stimulusStrategy.StimulusStrategy; /** * Created by pharmacy on 09/01/2018. */ public interface Stimulus { StimulusStrategy defaultStrategy = new Clock(); //Allows the Stimulus Strategy to be used with this stimlus to be chosen void chooseStrategy(StimulusStrategy s); }