home *** CD-ROM | disk | FTP | other *** search
- package asp.wizard.def;
-
- public class DefLabel extends DefDynaField {
- private String _theFont;
- private int _theBold;
- private int _theItalic;
- private int _theUnderline;
- private int _theColor;
- private int _theSize;
- private int _editable = 1;
-
- public void setFont(String theFont) {
- this._theFont = theFont;
- }
-
- public void setBold(int theBold) {
- this._theBold = theBold;
- }
-
- public void setItalic(int theItalic) {
- this._theItalic = theItalic;
- }
-
- public void setUnderline(int theUnderline) {
- this._theUnderline = theUnderline;
- }
-
- public void setColor(int theColor) {
- this._theColor = theColor;
- }
-
- public void setSize(int theSize) {
- this._theSize = theSize;
- }
-
- public int getSize() {
- return this._theSize;
- }
-
- public int getColor() {
- return this._theColor;
- }
-
- public int getUnderline() {
- return this._theUnderline;
- }
-
- public int getItalic() {
- return this._theItalic;
- }
-
- public int getBold() {
- return this._theBold;
- }
-
- public String getFont() {
- return this._theFont;
- }
-
- public int getEditable() {
- return this._editable;
- }
-
- public String getBaseName() {
- return "MSDBLabel";
- }
- }
-