--- projects/cms/source/util/uk/org/iscream/cms/util/XMLPacketMaker.java 2001/03/10 04:03:52 1.13 +++ projects/cms/source/util/uk/org/iscream/cms/util/XMLPacketMaker.java 2001/03/16 00:39:42 1.15 @@ -1,5 +1,5 @@ //---PACKAGE DECLARATION--- -package uk.ac.ukc.iscream.util; +package uk.org.iscream.util; //---IMPORTS--- import java.io.*; @@ -10,7 +10,7 @@ import javax.xml.parsers.*; * XMLPacketMaker - Creates an XMLPacket object. * * @author $Author: tdb $ - * @version $Id: XMLPacketMaker.java,v 1.13 2001/03/10 04:03:52 tdb Exp $ + * @version $Id: XMLPacketMaker.java,v 1.15 2001/03/16 00:39:42 tdb Exp $ */ public class XMLPacketMaker { @@ -19,7 +19,12 @@ public class XMLPacketMaker { /** * The current CVS revision of this class */ - public final String REVISION = "$Revision: 1.13 $"; + public final String REVISION = "$Revision: 1.15 $"; + + /** + * A reference to the system saxParser factory + */ + private final SAXParserFactory _factory = SAXParserFactory.newInstance(); //---STATIC METHODS--- @@ -58,7 +63,7 @@ public class XMLPacketMaker { * Overrides the {@link java.lang.Object#toString() Object.toString()} * method to provide clean logging (every class should have this). * - * This uses the uk.ac.ukc.iscream.util.NameFormat class + * This uses the uk.org.iscream.util.NameFormat class * to format the toString() * * @return the name of this class and its CVS revision @@ -88,10 +93,5 @@ public class XMLPacketMaker { private String _name = null; //---STATIC ATTRIBUTES--- - - /** - * A static reference to the system saxParser factory - */ - private static SAXParserFactory _factory = SAXParserFactory.newInstance(); }