package com.github.code4craft.helloworld.behavioral.state; /** * @author yihua.huang@dianping.com */ public interface HelloWorldState { public void append(HelloWorldStateContext helloWorldStateContext, String word); }