Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6cac75408ba35399b8d65e70f74c29dc61cd0d6e (plain) (blame)
1
/*******************************************************************************
 * 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 embeds()
  * @type embeds
  * @super Array
  * @class embeds
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms537450.aspx
*/

function embeds(){};
embeds.prototype= new Array();
/**
  * Property length
  * @type Number
  * @return Number
  * @class embeds
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms534101.aspx
*/

embeds.prototype.length=0;
/**
  * function item(vIndex,iSubindex)
  * @param vIndex Number
  * @param iSubindex Number
  * @class embeds
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536460.aspx
*/

embeds.prototype.item=function(vIndex,iSubindex){};
/**
  * function item(vIndex,iSubindex)
  * @param vIndex Number
  * @param iSubindex Number
  * @class embeds
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536460.aspx
*/

embeds.prototype.item=function(vIndex,iSubindex){};
/**
  * Property all
  * @type all
  * @return all
  * @class embeds
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms537434.aspx
*/

embeds.prototype.all= new all();
/**
  * function namedItem(sName)
  * @param sName String
  * @class embeds
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536634.aspx
*/

embeds.prototype.namedItem=function(sName){};
/**
  * function tags(sTag)
  * @param sTag Variant
  * @class embeds
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536776.aspx
*/

embeds.prototype.tags=function(sTag){};
/**
  * function urns(sUrn)
  * @param sUrn String
  * @class embeds
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536780.aspx
*/

embeds.prototype.urns=function(sUrn){};

Back to the top