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.agenda;
24 
25 import com.sun.star.wizards.common.ConfigGroup;
26 import com.sun.star.wizards.common.ConfigSet;
27 import com.sun.star.wizards.common.PropertyNames;
28 
29 /**
30  * CGAgenda means Configuration Group Agenda.
31  * This object encapsulates a OOo configuration group, used
32  * to save the state of the agenda wizard for reloading uppon
33  * next start.
34  */
35 public class CGAgenda extends ConfigGroup
36 {
37 
38     /** step 1 - design*/
39     public int cp_AgendaType;
40     /** step 1 - include minutes*/
41     public boolean cp_IncludeMinutes;
42     /** step 2  - title */
43     public String cp_Title = PropertyNames.EMPTY_STRING;
44     /** step 2  - date */
45     public String cp_Date;
46     /** step 2  - time */
47     public String cp_Time;
48     /** step 2  - location */
49     public String cp_Location = PropertyNames.EMPTY_STRING;
50     /** step 3  - show meeting type */
51     public boolean cp_ShowMeetingType;
52     /** step 3  - show read */
53     public boolean cp_ShowRead;
54     /** step 3  - show bring */
55     public boolean cp_ShowBring;
56     /** step 3  - show notes */
57     public boolean cp_ShowNotes;
58     /** step 4 - show called by */
59     public boolean cp_ShowCalledBy;
60     /** step 4 - show facilitator */
61     public boolean cp_ShowFacilitator;
62     /** step 4 - show notes taker */
63     public boolean cp_ShowNotetaker;
64     /** step 4 - show time keeper */
65     public boolean cp_ShowTimekeeper;
66     /** step 4 - show attendees */
67     public boolean cp_ShowAttendees;
68     /** step 4 - show observers */
69     public boolean cp_ShowObservers;
70     /** step 4 - show resource persons */
71     public boolean cp_ShowResourcePersons;
72     /** page 6 - template title   */
73     public String cp_TemplateName;
74     /** page 6 - template url    */
75     public String cp_TemplatePath;
76     /** page 6 - how to proceed  */
77     public int cp_ProceedMethod;
78     /** page 5 - topics ( a set )*/
79     public ConfigSet cp_Topics = new ConfigSet(CGTopic.class);
80 }
81