/*

    @file mw_lib_xml_action_xmlvault.js

    $Id: mw_lib_xml_action_showtimes_states.js,v 1.1 2007/11/20 04:39:34 graham Exp $

    @author     James Mc Parlane

    PROJECT:    MetaWrap JavaScript Library

    COMPONENT:  -

    @date       11 September 2004


    GENERAL INFO:

        Massive Technologies
        PO Box 567
        Darlinghurst 2010
        NSW, Australia
        email:  james@massive.com.au
        tel:    (+61-2) 9331 8699
        fax:    (+61-2) 9331 8699
        mob:    (+61) 407-909-186


    LICENSE:

    Copyright (C) 2001  Massive Technologies, Pty Ltd.

    MetaWrap is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program 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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

*/

/*
 * $Log: mw_lib_xml_action_showtimes_states.js,v $
 * Revision 1.1  2007/11/20 04:39:34  graham
 * metawrap files
 *
 * Revision 1.3  2007/10/08 06:42:11  james
 * Fixed issue in example
 *
 * Revision 1.2  2007/10/08 06:22:27  shane
 * *** empty log message ***
 *
 * Revision 1.1  2007/10/08 02:54:25  Bahram
 * Web services to communicate to the database created by XML Importer Service
 *
 * Revision 1.3  2007/09/03 05:08:33  jeff
 * added invoke_url
 *
 * Revision 1.2  2007/08/31 06:27:44  jeff
 * added states result item
 *
 * Revision 1.2  2006/09/25 04:25:45  james
 * Latest fixed to JS Lib
 *
 * Revision 1.1  2006/07/02 07:41:28  james
 * *** empty log message ***
 *
 * Revision 1.6  2006/07/02 06:29:25  james
 * Latest update to XmlVault and flash connector
 *
 * Revision 1.5  2006/07/01 08:07:00  james
 * Trying to fix Doxygen comments
 *
 * Revision 1.4  2006/06/20 13:41:15  james
 * Improved Action AJAX so that it can be executed asyncronously, either serially or in parallel
 *
 * Revision 1.3  2006/05/18 12:18:45  james
 * Tidied some stuff up
 *
 * Revision 1.2  2006/05/16 04:56:31  james
 * Created simple cypher object and testcases
 *
 * Revision 1.1  2006/05/14 07:36:23  james
 * *** empty log message ***
 *
 */

/*! \page mw_javascript_lib_xml_action_xmlvault MetaWrap - JavaScript - XML - Action - Showtimes
 *
 * \subsection mw_javascript_lib_xml_action_xmlvault Overview
 *
 */

//alert("$Id: mw_lib_xml_action_showtimes_states.js,v 1.1 2007/11/20 04:39:34 graham Exp $");

/*! \defgroup mw_javascript_lib_xml_action_xmlvault  MetaWrap - JavaScript - XML - Action - Showtimes
 *@{
 *
 * http://www.crossdomainxml.org/
 */

// Ensure we have the namespace we need
MwUse("MetaWrap","mw_lib.js");
MwUse("MetaWrap.XML","mw_lib_xml.js");
MwUse("MetaWrap.XML.Action","mw_lib_xml_action.js");

/*! @name  MetaWrap.XML.Action.Showtimes */
//@{

/*!
    @namespace  MetaWrap.XML.Action.Showtimes
    @brief      Register the namespace
*/
MetaWrap.XML.Action.Showtimes = {};


/*!
    @class      MetaWrap.XML.Action.Showtimes.Action.get = function(p_from,p_as)
    @param      p_from
    @param      p_as
    @return     void
    @brief
    @author     James Mc Parlane
    @date       8 May 2006

*/
MetaWrap.XML.Action.Showtimes.states = function(p_index,p_for)
{
	this.m_action = {};
	this.m_action.m_states = { };
}


/*!
    @class      MetaWrap.XML.Action.Showtimes.Action.get = function(p_from,p_as)
    @param      p_from
    @param      p_as
    @return     void
    @brief
    @author     James Mc Parlane
    @date       8 May 2006

*/
MetaWrap.XML.Action.Showtimes.statesResponse = function()
{

    this.m_status = "";
    this.m_results = [];
}



/*
MetaWrap.XML.Action.Showtimes.statesResponse.prototype.m_results_create = function()
{

	alert("m_results_create");

	var l_object =
	    {
	      m_name:""
	    };

	this.m_results[this.m_results.length] = l_object;
	return l_object;
}
*/



/*!
	@class      Search.Command.Search.Response = function()
	@return     void
	@brief      Implemenets Class that contains response of a states
	@author     James Mc Parlane
	@date       8 May 2006


*/
MetaWrap.XML.Action.Showtimes.states.prototype.response = function()
{
    this.m_response = {};
    this.m_response.m_states = new MetaWrap.XML.Action.Showtimes.statesResponse();
    return this;
}





/*!
 *@} endgroup mw_javascript_lib_xml_action_xmlvault MetaWrap - JavaScript - XML - Action - Showtimes
 */

/*!
 *@} end of MetaWrap.XML.Action.Showtimes
 */





