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 / HTMLStyleCallbackDefault.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-02-26  |  1.5 KB  |  45 lines

  1. package com.sun.java.swing.text.html;
  2.  
  3. class HTMLStyleCallbackDefault implements HTMLStyleCallback {
  4.    public static boolean doDebug;
  5.  
  6.    public void tagAction(String var1) {
  7.       debugOut("tag Action:tag:" + var1);
  8.    }
  9.  
  10.    public void depTagAction() {
  11.       debugOut("Dep Tag Action:");
  12.    }
  13.  
  14.    public void classAction(String var1) {
  15.       debugOut("class Action:class:" + var1);
  16.    }
  17.  
  18.    public void pseudoclassAction(String var1) {
  19.       debugOut("pseudoclass Action:pseudoclass:" + var1);
  20.    }
  21.  
  22.    public void propertyAction(String var1) {
  23.       debugOut("property Action:property:" + var1);
  24.    }
  25.  
  26.    public void valueAction(String var1) {
  27.       debugOut("Value Action:Value:" + var1);
  28.    }
  29.  
  30.    public void propsOpenAction() {
  31.       debugOut("Properties Open Action");
  32.    }
  33.  
  34.    public void propsCloseAction() {
  35.       debugOut("Properties Close Action");
  36.    }
  37.  
  38.    public static synchronized void debugOut(String var0) {
  39.       if (doDebug) {
  40.          System.out.println(var0);
  41.       }
  42.  
  43.    }
  44. }
  45.