All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jvoicexml.xml.scxml.Raise Maven / Gradle / Ivy

The newest version!
/*
 * JVoiceXML - A free VoiceXML implementation.
 *
 * Copyright (C) 2012-2018 JVoiceXML group - http://jvoicexml.sourceforge.net
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Library General Public
 *  License as published by the Free Software Foundation; either
 *  version 2 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Library General Public License for more details.
 *
 *  You should have received a copy of the GNU Library General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

package org.jvoicexml.xml.scxml;

import java.util.ArrayList;
import java.util.Collection;

import org.jvoicexml.xml.XmlNode;
import org.jvoicexml.xml.XmlNodeFactory;
import org.w3c.dom.Node;

/**
 * The <raise> element raises an event in the current SCXML
 * session. Note that the event will not be processed until the current block of
 * executable content has completed and all events that are already in the
 * internal event queue have been processed. For example, suppose the
 * <raise> element occurs first in the
 * <onentry> handler of state S followed by
 * executable content elements ec1 and ec2. If event
 * e1 is already in the internal event queue when S is
 * entered, the event generated by {@code } will not be processed until
 * ec1 and ec2 have finished execution and
 * e1 has been processed.
 *
 * @author Dirk Schnelle-Walka
 * @version $Revision$
 * @since 0.7.6
 */
public final class Raise
        extends AbstractScxmlNode {

    /** Name of the tag. */
    public static final String TAG_NAME = "raise";

    /**
     * Specifies the name of the event. This will be matched against the 'event'
     * attribute of transitions.
     */
    private static final String ATTRIBUTE_EVENT = "event";

    /**
     * Supported attribute names for this node.
     */
    protected static final ArrayList ATTRIBUTE_NAMES;

    /**
     * Set the valid attributes for this node.
     */
    static {
        ATTRIBUTE_NAMES = new java.util.ArrayList();

        ATTRIBUTE_NAMES.add(ATTRIBUTE_EVENT);
    }

    /**
     * Construct a new final object without a node.
     * 

* This is necessary for the node factory. *

* * @see org.jvoicexml.xml.scxml.ScxmlNodeFactory */ public Raise() { super(null); } /** * Construct a new final object. * @param node The encapsulated node. */ Raise(final Node node) { super(node); } /** * Constructs a new node. * * @param n * The encapsulated node. * @param factory * The node factory to use. */ private Raise(final Node n, final XmlNodeFactory factory) { super(n, factory); } /** * Get the name of the tag for the derived node. * * @return name of the tag. */ public String getTagName() { return TAG_NAME; } /** * {@inheritDoc} */ public XmlNode newInstance(final Node n, final XmlNodeFactory factory) { return new Raise(n, factory); } /** * Retrieves the event attribute. * * @return value of the event attribute. * @see #ATTRIBUTE_EVENT */ public String getEvent() { return getAttribute(ATTRIBUTE_EVENT); } /** * Sets the event attribute. * * @param event Value of the event attribute. * @see #ATTRIBUTE_EVENT */ public void setEvent(final String event) { setAttribute(ATTRIBUTE_EVENT, event); } /** * {@inheritDoc} */ @Override protected boolean canContainChild(final String tagName) { return false; } /** * {@inheritDoc} */ @Override public Collection getAttributeNames() { return ATTRIBUTE_NAMES; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy