package model.util; /** * yeah there's nothing here * I just need to establish the inheritance relation of ElementNode and TextNode */ public interface Node { // Return a representation of the Node. Useful for debugging. public String getData(); }