001    /*
002     * File:    $HeadURL: https://jvoicexml.svn.sourceforge.net/svnroot/jvoicexml/core/trunk/org.jvoicexml.xml/src/org/jvoicexml/xml/SsmlNode.java $
003     * Version: $LastChangedRevision: 2325 $
004     * Date:    $LastChangedDate: 2010-08-25 09:23:51 +0200 (Mi, 25 Aug 2010) $
005     * Author:  $LastChangedBy: schnelle $
006     *
007     * JVoiceXML - A free VoiceXML implementation.
008     *
009     * Copyright (C) 2006-2010 JVoiceXML group - http://jvoicexml.sourceforge.net
010     *
011     * This library is free software; you can redistribute it and/or
012     * modify it under the terms of the GNU Library General Public
013     * License as published by the Free Software Foundation; either
014     * version 2 of the License, or (at your option) any later version.
015     *
016     * This library is distributed in the hope that it will be useful,
017     * but WITHOUT ANY WARRANTY; without even the implied warranty of
018     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
019     * Library General Public License for more details.
020     *
021     * You should have received a copy of the GNU Library General Public
022     * License along with this library; if not, write to the Free Software
023     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
024     *
025     */
026    
027    package org.jvoicexml.xml;
028    
029    /**
030     * Marker interface of a node within an SSML document.
031     *
032     * @see org.jvoicexml.xml.ssml.SsmlDocument
033     *
034     * @author Dirk Schnelle-Walka
035     * @version $Revision: 2325 $
036     *
037     * @since 0.5
038     */
039    public interface SsmlNode extends XmlNode {
040    }