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

Last change on this file since 3548 was 3548, checked in by say1, 21 years ago

added new "selfContained" package. not finished and running yet

  • 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: 3548 $
36 * @see blank
37 *
38 */
39class XMLUtil {
40
41 /** the singleton instance */
42 protected static XMLUtil instance = null;
43
44
45 /** JAXP parser factory */
46 protected DocumentBuilderFactory doc_build_fact=null;
47
48 /** JAXP parser factory */
49 static public DocumentBuilderFactory getDocumentBuilderFactory() {
50 if (instance == null)
51 init();
52 return instance.doc_build_fact;
53 }
54
55 /** JAXP parser */
56 protected DocumentBuilder doc_builder=null;
57
58 /** JAXP parser */
59 static public DocumentBuilder getDocumentBuilder() {
60 if (instance == null)
61 init();
62 return instance.doc_builder;
63 }
64
65 /** xerces parser */
66 protected DOMParser parser = null;
67
68 /** xerces parser */
69 static public DOMParser getDOMParser() {
70 if (instance == null)
71 init();
72 return instance.parser;
73 }
74
75 /** initalise the statics */
76 static protected void init() {
77 instance = new XMLUtil();
78 try {
79 instance.doc_build_fact = DocumentBuilderFactory.newInstance();
80
81 instance.doc_builder = instance.doc_build_fact.newDocumentBuilder();
82 instance.parser = new DOMParser();
83 } catch (Exception e) {
84 System.out.println("XMLConverter:exception "+e.getMessage());
85 }
86 }
87
88 /**
89 * Checks that the objects can be instantiated
90 *
91 */
92 public static void main(String args[]) throws IOException
93 {
94 XMLUtil.getDOMParser();
95 }
96}
97
Note: See TracBrowser for help on using the repository browser.