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$FontConstants.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-02-26  |  1.1 KB  |  18 lines

  1. package com.sun.java.swing.text;
  2.  
  3. public class StyleConstants$FontConstants implements AttributeSet.FontAttribute, AttributeSet.CharacterAttribute {
  4.    public static final Object Family = new StyleConstants$FontConstants("family");
  5.    public static final Object Size = new StyleConstants$FontConstants("size");
  6.    public static final Object Bold = new StyleConstants$FontConstants("bold");
  7.    public static final Object Italic = new StyleConstants$FontConstants("italic");
  8.    private String representation;
  9.  
  10.    public String toString() {
  11.       return this.representation;
  12.    }
  13.  
  14.    private StyleConstants$FontConstants(String var1) {
  15.       this.representation = var1;
  16.    }
  17. }
  18.