--- projects/cms/source/util/uk/org/iscream/cms/util/XMLPacketMaker.java 2001/01/18 01:55:57 1.8 +++ projects/cms/source/util/uk/org/iscream/cms/util/XMLPacketMaker.java 2001/01/28 05:47:05 1.9 @@ -14,7 +14,7 @@ import javax.xml.parsers.SAXParser; * XMLPacketMaker - Creates an XMLPacket object. * * @author $Author: tdb $ - * @version $Id: XMLPacketMaker.java,v 1.8 2001/01/18 01:55:57 tdb Exp $ + * @version $Id: XMLPacketMaker.java,v 1.9 2001/01/28 05:47:05 tdb Exp $ */ public class XMLPacketMaker extends HandlerBase { @@ -23,19 +23,29 @@ public class XMLPacketMaker extends HandlerBase { /** * The current CVS revision of this class */ - public final String REVISION = "$Revision: 1.8 $"; + public final String REVISION = "$Revision: 1.9 $"; //---STATIC METHODS--- //---CONSTRUCTORS--- - // Constructor for accepting XML input. + /** + * Constructor for accepting XML input. + * + * @param xml A String of XML to process. + */ public XMLPacketMaker (String xml) { _xml = xml; } //---PUBLIC METHODS--- + /** + * Method to create an XML packet from the data this + * class was constructed with. + * + * @return an XMLPacket representing the XML String given + */ public XMLPacket createXMLPacket() { // Create the XMLPacket to store values in.