/* A token that contains a set of label/token pairs. Copyright (c) 2003-2006 The Regents of the University of California. All rights reserved. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following two paragraphs appear in all copies of this software. IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. PT_COPYRIGHT_VERSION_2 COPYRIGHTENDKEY */ package ptolemy.data; import org.w3c.dom.Document; import ptolemy.data.expr.XMLParser; import ptolemy.data.type.BaseType; import ptolemy.data.type.Type; import ptolemy.kernel.util.IllegalActionException; ////////////////////////////////////////////////////////////////////////// //// XmlToken /** A token that contains a xml document. Currently, no operations between function tokens (add, multiply, etc.) are supported. @author Yang Zhao @version $Id$ @since Ptolemy II 4.0 @Pt.ProposedRating Red (neuendor) @Pt.AcceptedRating Red (cxh) */ public class XMLToken extends Token { /** Construct an empty token. */ public XMLToken() { super(); _toString = null; } /** Construct an XmlToken from the specified string. * @param init The initialization string. * @exception Exception If the string is not parsable. */ public XMLToken(String init) throws Exception { XMLParser parser = new XMLParser(); _doc = parser.parser(init); _toString = init; } /////////////////////////////////////////////////////////////////// //// public methods //// /** Convert the specified token into an instance of XMLToken. * If the specified token is not an instance of XMLToken, * an exception is thrown. * @param token The token to be converted to a XMLToken. * @return A XMLToken. * @exception IllegalActionException If the conversion * cannot be carried out. */ public static XMLToken convert(Token token) throws IllegalActionException { if (token instanceof XMLToken) { return (XMLToken) token; } throw new IllegalActionException(notSupportedConversionMessage(token, "xmltoken")); } /** Return the dom document parsed from the xml string. * @return A Document. */ public Document getDomTree() { return _doc; } /** Return the type of this token. * @return BaseType.XMLTOKEN. */ public Type getType() { return BaseType.XMLTOKEN; } /** Return the value of this Token as a string. * @return A String. */ public String toString() { return _toString; } /////////////////////////////////////////////////////////////////// //// private variables //// private Document _doc; private String _toString; }