xref: /trunk/main/wizards/com/sun/star/wizards/web/data/CGContent.java (revision 3309286857f19787ae62bd793a98b5af4edd2ad3)
1*a1b4a26bSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*a1b4a26bSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*a1b4a26bSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*a1b4a26bSAndrew Rist  * distributed with this work for additional information
6*a1b4a26bSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*a1b4a26bSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*a1b4a26bSAndrew Rist  * "License"); you may not use this file except in compliance
9*a1b4a26bSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*a1b4a26bSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*a1b4a26bSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*a1b4a26bSAndrew Rist  * software distributed under the License is distributed on an
15*a1b4a26bSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*a1b4a26bSAndrew Rist  * KIND, either express or implied.  See the License for the
17*a1b4a26bSAndrew Rist  * specific language governing permissions and limitations
18*a1b4a26bSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*a1b4a26bSAndrew Rist  *************************************************************/
21*a1b4a26bSAndrew Rist 
22*a1b4a26bSAndrew Rist 
23cdf0e10cSrcweir package com.sun.star.wizards.web.data;
24cdf0e10cSrcweir 
25cdf0e10cSrcweir import com.sun.star.wizards.common.*;
26cdf0e10cSrcweir 
27cdf0e10cSrcweir import org.w3c.dom.*;
28cdf0e10cSrcweir 
29cdf0e10cSrcweir public class CGContent extends ConfigSetItem implements XMLProvider
30cdf0e10cSrcweir {
31cdf0e10cSrcweir 
32cdf0e10cSrcweir     public String dirName;
33cdf0e10cSrcweir     public String cp_Name;
34cdf0e10cSrcweir     public String cp_Description;
35cdf0e10cSrcweir     public ConfigSet cp_Contents = new ConfigSet(CGContent.class);
36cdf0e10cSrcweir     public ConfigSet cp_Documents = new ConfigSet(CGDocument.class);
37cdf0e10cSrcweir 
CGContent()38cdf0e10cSrcweir     public CGContent()
39cdf0e10cSrcweir     {
40cdf0e10cSrcweir         /*cp_Documents = new ConfigSet(CGDocument.class) {
41cdf0e10cSrcweir         protected DefaultListModel createChildrenList() {
42cdf0e10cSrcweir         return cp_Contents.getChildrenList();
43cdf0e10cSrcweir         }
44cdf0e10cSrcweir         };*/
45cdf0e10cSrcweir     }
46cdf0e10cSrcweir 
createDOM(Node parent)47cdf0e10cSrcweir     public Node createDOM(Node parent)
48cdf0e10cSrcweir     {
49cdf0e10cSrcweir 
50cdf0e10cSrcweir         Node myElement = XMLHelper.addElement(parent, "content",
51cdf0e10cSrcweir                 new String[]
52cdf0e10cSrcweir                 {
53cdf0e10cSrcweir                     "name", "directory-name", "description", "directory"
54cdf0e10cSrcweir                 },
55cdf0e10cSrcweir                 new String[]
56cdf0e10cSrcweir                 {
57cdf0e10cSrcweir                     cp_Name, dirName, cp_Description, dirName
58cdf0e10cSrcweir                 });
59cdf0e10cSrcweir 
60cdf0e10cSrcweir         cp_Documents.createDOM(myElement);
61cdf0e10cSrcweir 
62cdf0e10cSrcweir         return myElement;
63cdf0e10cSrcweir     }
64cdf0e10cSrcweir }
65