
//--------------------------------------------
/**
 *
 *  A document element is contained in some kind of
 *  document and can be represented textually probably
 *  in several formats.
 *
 *  @author matth3wbishop<at>yahoo<dot>com
 */ 

public interface DocumentElement
{

  //--------------------------------------------
  public String printHtml(); 

  //--------------------------------------------
  public String toString();

  //--------------------------------------------
  public String printReport();


} //-- DocumentElement interface
