Show
Ignore:
Timestamp:
05/04/08 18:12:38 (7 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted the char[] to String and use the an alias.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/custom/StyledTextPrintOptions.d

    r155 r212  
    1 /******************************************************************************* 
     1/******************************************************************************* 
    22 * Copyright (c) 2000, 2006 IBM Corporation and others. 
    33 * All rights reserved. This program and the accompanying materials 
     
    1212 *******************************************************************************/ 
    1313module dwt.custom.StyledTextPrintOptions; 
     14 
     15import dwt.dwthelper.utils; 
    1416 
    1517/** 
     
    3739     * and <code>footer</code>. Value is <code>&lt;page&gt;</code> 
    3840     */ 
    39     public static final char[] PAGE_TAG = "<page>"; 
     41    public static final String PAGE_TAG = "<page>"; 
    4042    /** 
    4143     * Separator constant for use in <code>header</code> and 
    4244     * <code>footer</code>. Value is <code>\t</code> 
    4345     */ 
    44     public static final char[] SEPARATOR = "\t"; 
     46    public static final String SEPARATOR = "\t"; 
    4547    /** 
    4648     * Formatted text to print in the header of each page. 
     
    5355     * character (<code>StyledTextPrintOptions.SEPARATOR</code>). 
    5456     */ 
    55     public char[] header = null; 
     57    public String header = null; 
    5658    /** 
    5759     * Formatted text to print in the footer of each page. 
     
    6466     * character (<code>StyledTextPrintOptions.SEPARATOR</code>). 
    6567     */ 
    66     public char[] footer = null; 
     68    public String footer = null; 
    6769    /** 
    6870     * Name of the print job. 
    6971     */ 
    70     public char[] jobName = null; 
     72    public String jobName = null; 
    7173 
    7274    /**