home *** CD-ROM | disk | FTP | other *** search
- package asp.wizard.def;
-
- public class DefTextArea extends DefDynaField {
- private int _visibleLength;
- private int _maxLength;
- private int _visibleHeight;
- private int _editable;
-
- public void setEditable(int editable) {
- this._editable = editable;
- }
-
- public int getEditable() {
- return this._editable;
- }
-
- public void setVisibleLength(int visibleLength) {
- this._visibleLength = visibleLength;
- }
-
- public void setMaxLength(int maxLength) {
- this._maxLength = maxLength;
- }
-
- public void setVisibleHeight(int visibleHeight) {
- this._visibleHeight = visibleHeight;
- }
-
- public int getVisibleLength() {
- return this._visibleLength;
- }
-
- public int getMaxLength() {
- return this._maxLength;
- }
-
- public int getVisibleHeight() {
- return this._visibleHeight;
- }
-
- public String getBaseName() {
- return "MSDBTextArea";
- }
- }
-