package jamel.gui; /** * Represents a HTML element. */ public interface HtmlElement { /** * Returns the content of this element as a HTML text. * * @return the content of this element as a HTML text. */ String getText(); } // ***