1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 package com.sun.star.wizards.fax;
24 
25 import com.sun.star.wizards.common.ConfigGroup;
26 
27 public class CGFax extends ConfigGroup
28 {
29 
30     public int cp_Style;
31     public boolean cp_PrintCompanyLogo;
32     public boolean cp_PrintDate;
33     public boolean cp_PrintSubjectLine;
34     public boolean cp_PrintSalutation;
35     public boolean cp_PrintCommunicationType;
36     public boolean cp_PrintGreeting;
37     public boolean cp_PrintFooter;
38     public String cp_CommunicationType;
39     public String cp_Salutation;
40     public String cp_Greeting;
41     public int cp_SenderAddressType;
42     public String cp_SenderCompanyName;
43     public String cp_SenderStreet;
44     public String cp_SenderPostCode;
45     public String cp_SenderState;
46     public String cp_SenderCity;
47     public String cp_SenderFax;
48     public int cp_ReceiverAddressType;
49     public String cp_Footer;
50     public boolean cp_FooterOnlySecondPage;
51     public boolean cp_FooterPageNumbers;
52     public int cp_CreationType;
53     public String cp_TemplateName;
54     public String cp_TemplatePath;
55 }
56