Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 0346b1ee0631255462ef864c660af33c454dd432 (plain) (blame)
1
2
3
4
5
6
/*******************************************************************************
 * Copyright (c) 2007, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 ******************************************************************************
 *
 **/

/**
  * Object param()
  * @type param
  * @super Object
  * @memberOf param
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535880.aspx
*/

function param(){};
param.prototype= new Object();
/**
  * Property name
  * @type String
  * @returns {String}
  * @memberOf param
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms534186.aspx
*/

param.prototype.name="";
/**
  * Property type
  * @type String
  * @returns {String}
  * @memberOf param
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms534694.aspx
*/

param.prototype.type="";
/**
  * Property value
  * @type String
  * @returns {String}
  * @memberOf param
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535127.aspx
*/

param.prototype.value="";
/**
  * Property valueType
  * @type String
  * @returns {String}
  * @memberOf param
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535121.aspx
*/

param.prototype.valueType="";
/**
  * Property outerHTML
  * @type String
  * @returns {String}
  * @memberOf param
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms534310.aspx
*/

param.prototype.outerHTML="";

Back to the top