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

  1. package com.sun.java.swing.text;
  2.  
  3. public class StyleConstants$ParagraphConstants implements AttributeSet.ParagraphAttribute {
  4.    public static final Object FirstLineIndent = new StyleConstants$ParagraphConstants("FirstLineIndent");
  5.    public static final Object LeftIndent = new StyleConstants$ParagraphConstants("LeftIndent");
  6.    public static final Object RightIndent = new StyleConstants$ParagraphConstants("RightIndent");
  7.    public static final Object LineSpacing = new StyleConstants$ParagraphConstants("LineSpacing");
  8.    public static final Object SpaceAbove = new StyleConstants$ParagraphConstants("SpaceAbove");
  9.    public static final Object SpaceBelow = new StyleConstants$ParagraphConstants("SpaceBelow");
  10.    public static final Object Alignment = new StyleConstants$ParagraphConstants("Alignment");
  11.    public static final Object TabSet = new StyleConstants$ParagraphConstants("TabSet");
  12.    private String representation;
  13.  
  14.    public String toString() {
  15.       return this.representation;
  16.    }
  17.  
  18.    private StyleConstants$ParagraphConstants(String var1) {
  19.       this.representation = var1;
  20.    }
  21. }
  22.