ということでノードをJavaのコードで表すとこんな感じ。
/** * 構文木のノードです。 */ public interface Node { /** * このノードを評価します。 */ public Node evaluation(); }