home *** CD-ROM | disk | FTP | other *** search
- package allaire.controls;
-
- import java.awt.Font;
-
- class CFGridFormColumn {
- public static final int TYPE_STRING = 0;
- public static final int TYPE_NUMBER = 1;
- public static final int TYPE_DATE = 2;
- public static final int TYPE_TIME = 3;
- public static final int TYPE_DATETIME = 4;
- public static final int TYPE_IMAGE = 5;
- String m_name;
- String m_header;
- String m_url;
- String m_urlkey;
- String m_urldestination;
- String m_formatMask;
- Font m_dataFont;
- Font m_headerFont;
- int m_dataWidth;
- int m_dataAlign;
- int m_headerAlign;
- int m_formatType;
- int m_dataType;
- boolean m_sparse;
- boolean m_visible;
- boolean m_readonly;
-
- CFGridFormColumn() {
- this.m_name = null;
- this.m_header = null;
- this.m_dataFont = null;
- this.m_headerFont = null;
- this.m_url = null;
- this.m_urlkey = null;
- this.m_urldestination = null;
- this.m_formatMask = null;
- this.m_dataAlign = -1;
- this.m_headerAlign = -1;
- this.m_dataWidth = -1;
- this.m_visible = true;
- this.m_readonly = false;
- this.m_formatType = 0;
- }
-
- CFGridFormColumn(String var1, String var2) {
- this.m_name = var1;
- this.m_header = var2;
- this.m_dataFont = null;
- this.m_headerFont = null;
- this.m_url = null;
- this.m_urlkey = null;
- this.m_urldestination = null;
- this.m_formatMask = null;
- this.m_dataAlign = -1;
- this.m_headerAlign = -1;
- this.m_dataWidth = -1;
- this.m_visible = true;
- this.m_readonly = false;
- this.m_formatType = 0;
- }
- }
-