package model.util; /** * yeah there's literally nothing here * i just need to establish that ElementNode and TextNode both inherit from Node */ public interface Node { // Return a representation of the Node public String getData(); }