JEphem Informatic Trail tig source code HtmlConstants.java
//*********************************************************************************
// interface tig.html.HtmlConstants
// Software released under the General Public License (version 2 or later), available at
// http://www.gnu.org/copyleft/gpl.html
//*********************************************************************************
package tig.html;

/******************************************************************************
Contains miscelaneous utility methods not having yet a place in an other class.
@author Thierry Graff
@history sep 20 2001 : creation.

@todo
*********************************************************************************/
public interface HtmlConstants{

  //=================================================================================
  //                                      CONSTANTS
  //=================================================================================
  /** Value = "H1". */
  public final static String H1 = "H1";
  /** Value = "HTML". */
  public final static String HTML = "HTML";
  /** Value = "BODY". */
  public final static String BODY = "BODY";
  /** Value = "CENTER". */
  public final static String CENTER = "CENTER";
  /** Value = "B". */
  public final static String B = "B";
  /** Value = "<BR>". */
  public final static String BR = "<BR>";

}// end interface HtmlConstants