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.letter;
24 
25 import com.sun.star.wizards.common.ConfigGroup;
26 
27 public class CGLetter extends ConfigGroup
28 {
29 
30     public int cp_Style;
31     public boolean cp_BusinessPaper;
32     public CGPaperElementLocation cp_CompanyLogo = new CGPaperElementLocation();
33     public CGPaperElementLocation cp_CompanyAddress = new CGPaperElementLocation();
34     public boolean cp_PaperCompanyAddressReceiverField;
35     public boolean cp_PaperFooter;
36     public double cp_PaperFooterHeight;
37     public int cp_Norm;
38     public boolean cp_PrintCompanyLogo;
39     public boolean cp_PrintCompanyAddressReceiverField;
40     public boolean cp_PrintLetterSigns;
41     public boolean cp_PrintSubjectLine;
42     public boolean cp_PrintSalutation;
43     public boolean cp_PrintBendMarks;
44     public boolean cp_PrintGreeting;
45     public boolean cp_PrintFooter;
46     public String cp_Salutation;
47     public String cp_Greeting;
48     public int cp_SenderAddressType;
49     public String cp_SenderCompanyName;
50     public String cp_SenderStreet;
51     public String cp_SenderPostCode;
52     public String cp_SenderState;
53     public String cp_SenderCity;
54     public int cp_ReceiverAddressType;
55     public String cp_Footer;
56     public boolean cp_FooterOnlySecondPage;
57     public boolean cp_FooterPageNumbers;
58     public int cp_CreationType;
59     public String cp_TemplateName;
60     public String cp_TemplatePath;
61 }
62