home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161a.iso / handson / files / copyjava.exe / com / sun / java / swing / text / html / StyleDefs.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-02-26  |  1.2 KB  |  25 lines

  1. package com.sun.java.swing.text.html;
  2.  
  3. interface StyleDefs {
  4.    String BACKGROUND_COLOR = "background-color";
  5.    String BORDER_TOP = "border-top";
  6.    String BORDER_BOTTOM = "border-bottom";
  7.    String BORDER_LEFT = "border-left";
  8.    String BORDER_RIGHT = "border-right";
  9.    String COLOR = "color";
  10.    String FONT_FAMILY = "font-family";
  11.    String FONT_SIZE = "font-size";
  12.    String FONT_SIZES = "font-sizes";
  13.    String FONT_STYLE = "font-style";
  14.    String FONT_WEIGHT = "font-weight";
  15.    String LIST_STYLE_IMAGE = "list-style-image";
  16.    String LIST_STYLE_TYPE = "list-style-type";
  17.    String MARGIN_TOP = "margin-top";
  18.    String MARGIN_BOTTOM = "margin-bottom";
  19.    String MARGIN_LEFT = "margin-left";
  20.    String MARGIN_RIGHT = "margin-right";
  21.    String TEXT_DECORATION = "text-decoration";
  22.    String TEXT_ALIGN = "text-align";
  23.    String VERTICAL_ALIGN = "vertical-align";
  24. }
  25.