Changeset 212:ab60f3309436 for dwt/custom/StyledTextPrintOptions.d
- Timestamp:
- 05/04/08 18:12:38 (7 months ago)
- Files:
-
- dwt/custom/StyledTextPrintOptions.d (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/custom/StyledTextPrintOptions.d
r155 r212 1 /*******************************************************************************1 /******************************************************************************* 2 2 * Copyright (c) 2000, 2006 IBM Corporation and others. 3 3 * All rights reserved. This program and the accompanying materials … … 12 12 *******************************************************************************/ 13 13 module dwt.custom.StyledTextPrintOptions; 14 15 import dwt.dwthelper.utils; 14 16 15 17 /** … … 37 39 * and <code>footer</code>. Value is <code><page></code> 38 40 */ 39 public static final char[]PAGE_TAG = "<page>";41 public static final String PAGE_TAG = "<page>"; 40 42 /** 41 43 * Separator constant for use in <code>header</code> and 42 44 * <code>footer</code>. Value is <code>\t</code> 43 45 */ 44 public static final char[]SEPARATOR = "\t";46 public static final String SEPARATOR = "\t"; 45 47 /** 46 48 * Formatted text to print in the header of each page. … … 53 55 * character (<code>StyledTextPrintOptions.SEPARATOR</code>). 54 56 */ 55 public char[]header = null;57 public String header = null; 56 58 /** 57 59 * Formatted text to print in the footer of each page. … … 64 66 * character (<code>StyledTextPrintOptions.SEPARATOR</code>). 65 67 */ 66 public char[]footer = null;68 public String footer = null; 67 69 /** 68 70 * Name of the print job. 69 71 */ 70 public char[]jobName = null;72 public String jobName = null; 71 73 72 74 /**
