KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > knowgate > dataxslt > Container


1 /*
2   Copyright (C) 2003 Know Gate S.L. All rights reserved.
3                       C/Oņa, 107 1š2 28050 Madrid (Spain)
4
5   Redistribution and use in source and binary forms, with or without
6   modification, are permitted provided that the following conditions
7   are met:
8
9   1. Redistributions of source code must retain the above copyright
10      notice, this list of conditions and the following disclaimer.
11
12   2. The end-user documentation included with the redistribution,
13      if any, must include the following acknowledgment:
14      "This product includes software parts from hipergate
15      (http://www.hipergate.org/)."
16      Alternately, this acknowledgment may appear in the software itself,
17      if and wherever such third-party acknowledgments normally appear.
18
19   3. The name hipergate must not be used to endorse or promote products
20      derived from this software without prior written permission.
21      Products derived from this software may not be called hipergate,
22      nor may hipergate appear in their name, without prior written
23      permission.
24
25   This library is distributed in the hope that it will be useful,
26   but WITHOUT ANY WARRANTY; without even the implied warranty of
27   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
28
29   You should have received a copy of hipergate License with this code;
30   if not, visit http://www.hipergate.org or mail to info@hipergate.org
31 */

32
33 package com.knowgate.dataxslt;
34
35 import java.util.Vector JavaDoc;
36
37 import org.w3c.dom.Element JavaDoc;
38 import org.w3c.dom.Node JavaDoc;
39 import org.w3c.dom.NodeList JavaDoc;
40
41 import dom.DOMSubDocument;
42
43 /**
44  * <p>Microsite Container</p>
45  * @author Sergio Montoro Ten
46  * @version 1.0
47  */

48 public class Container extends DOMSubDocument {
49
50   // ----------------------------------------------------------
51

52   public Container(Node JavaDoc oRefNode) {
53     super(oRefNode);
54   }
55
56   // ----------------------------------------------------------
57

58   public String JavaDoc guid() {
59     Node JavaDoc oItem = oNode.getAttributes().getNamedItem("guid");
60
61     if (null==oItem)
62       return null;
63     else
64       return oItem.getNodeValue();
65   } // guid()
66

67   // ----------------------------------------------------------
68

69   public String JavaDoc name() {
70     return getElement("name");
71   } // name
72

73   // ----------------------------------------------------------
74

75   public String JavaDoc template() {
76     return getElement("template");
77   } // name
78

79   // ----------------------------------------------------------
80

81   public String JavaDoc thumbnail() {
82     return getElement("thumbnail");
83   } // thumbnail
84

85   // ----------------------------------------------------------
86

87   public String JavaDoc parameters() {
88     return getElement("parameters");
89   } // parameters
90

91   // ----------------------------------------------------------
92

93   public Vector JavaDoc metablocks() {
94     Node JavaDoc oMetaBlksNode = null;
95     NodeList JavaDoc oNodeList;
96     Vector JavaDoc oLinkVctr;
97
98     for (oMetaBlksNode=oNode.getFirstChild(); oMetaBlksNode!=null; oMetaBlksNode=oMetaBlksNode.getNextSibling())
99       if (Node.ELEMENT_NODE==oMetaBlksNode.getNodeType())
100         if (oMetaBlksNode.getNodeName().equals("metablocks")) break;
101
102     oNodeList = ((Element JavaDoc) oMetaBlksNode).getElementsByTagName("metablock");
103
104     oLinkVctr = new Vector JavaDoc(oNodeList.getLength());
105
106     for (int i=0; i<oNodeList.getLength(); i++)
107       oLinkVctr.add(new MetaBlock (oNodeList.item(i)));
108
109     return oLinkVctr;
110   } // metablocks()
111

112   // ----------------------------------------------------------
113
}
Popular Tags