source: trunk/gsdl3/src/java/org/greenstone/gsdl3/selfContained/XMLUtil.java@ 5663

Last change on this file since 5663 was 5663, checked in by kjdon, 21 years ago

fixed up some bad javadoc

  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1/*
2 * XMLUtil.java
3 * Copyright (C) 2002 New Zealand Digital Library, http://www.nzdl.org
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19package org.greenstone.gsdl3.selfContained;
20
21// XML classes
22import javax.xml.parsers.DocumentBuilder;
23import javax.xml.parsers.DocumentBuilderFactory;
24import org.apache.xerces.parsers.DOMParser;
25
26// other java classes
27import java.io.IOException;
28
29
30/**
31 * Class XMLUtil holds static global XML configuration objects.
32 *
33 * @author <a href="http://www.cs.waikato.ac.nz/~say1/">stuart yeates</a> (<a href="mailto:[email protected]">s
34[email protected]</a>) at the <a href="http://www.nzdl.org">New Zealand Digital Library</a>
35 * @version $Revision: 5663 $
36 *
37 */
38class XMLUtil {
39
40 /** the singleton instance */
41 protected static XMLUtil instance = null;
42
43
44 /** JAXP parser factory */
45 protected DocumentBuilderFactory doc_build_fact=null;
46
47 /** JAXP parser factory */
48 static public DocumentBuilderFactory getDocumentBuilderFactory() {
49 if (instance == null)
50 init();
51 return instance.doc_build_fact;
52 }
53
54 /** JAXP parser */
55 protected DocumentBuilder doc_builder=null;
56
57 /** JAXP parser */
58 static public DocumentBuilder getDocumentBuilder() {
59 if (instance == null)
60 init();
61 return instance.doc_builder;
62 }
63
64 /** xerces parser */
65 protected DOMParser parser = null;
66
67 /** xerces parser */
68 static public DOMParser getDOMParser() {
69 if (instance == null)
70 init();
71 return instance.parser;
72 }
73
74 /** initalise the statics */
75 static protected void init() {
76 instance = new XMLUtil();
77 try {
78 instance.doc_build_fact = DocumentBuilderFactory.newInstance();
79
80 instance.doc_builder = instance.doc_build_fact.newDocumentBuilder();
81 instance.parser = new DOMParser();
82 } catch (Exception e) {
83 System.out.println("XMLConverter:exception "+e.getMessage());
84 }
85 }
86
87 /**
88 * Checks that the objects can be instantiated
89 *
90 */
91 public static void main(String args[]) throws IOException
92 {
93 XMLUtil.getDOMParser();
94 }
95}
96
Note: See TracBrowser for help on using the repository browser.