home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2003 March / DPPCPRO0303.ISO / Components / Microsoft ASP / _SETUP.1 / ASPWizard.jar / asp / wizard / def / DefLabel.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-20  |  1.8 KB  |  68 lines

  1. package asp.wizard.def;
  2.  
  3. public class DefLabel extends DefDynaField {
  4.    private String _theFont;
  5.    private int _theBold;
  6.    private int _theItalic;
  7.    private int _theUnderline;
  8.    private int _theColor;
  9.    private int _theSize;
  10.    private int _editable = 1;
  11.  
  12.    public void setFont(String theFont) {
  13.       this._theFont = theFont;
  14.    }
  15.  
  16.    public void setBold(int theBold) {
  17.       this._theBold = theBold;
  18.    }
  19.  
  20.    public void setItalic(int theItalic) {
  21.       this._theItalic = theItalic;
  22.    }
  23.  
  24.    public void setUnderline(int theUnderline) {
  25.       this._theUnderline = theUnderline;
  26.    }
  27.  
  28.    public void setColor(int theColor) {
  29.       this._theColor = theColor;
  30.    }
  31.  
  32.    public void setSize(int theSize) {
  33.       this._theSize = theSize;
  34.    }
  35.  
  36.    public int getSize() {
  37.       return this._theSize;
  38.    }
  39.  
  40.    public int getColor() {
  41.       return this._theColor;
  42.    }
  43.  
  44.    public int getUnderline() {
  45.       return this._theUnderline;
  46.    }
  47.  
  48.    public int getItalic() {
  49.       return this._theItalic;
  50.    }
  51.  
  52.    public int getBold() {
  53.       return this._theBold;
  54.    }
  55.  
  56.    public String getFont() {
  57.       return this._theFont;
  58.    }
  59.  
  60.    public int getEditable() {
  61.       return this._editable;
  62.    }
  63.  
  64.    public String getBaseName() {
  65.       return "MSDBLabel";
  66.    }
  67. }
  68.